Skip to content
Snippets Groups Projects
Commit e287bb4d authored by Jannis Rieger's avatar Jannis Rieger
Browse files

fixed code style

parent 52829e8b
No related branches found
No related tags found
1 merge request!149fix(gfx): Break line before char is printed
......@@ -87,17 +87,16 @@ void gfx_puts(
Color bg
) {
// iterate over the string
while(*str) {
while (*str) {
// if the current position plus the width of the next character
// would bring us outside of the display ...
if( (x + font->Width) > r->width) {
if ((x + font->Width) > r->width) {
// ... we move down a line before printing the character
x = 0;
y += font->Height;
}
// if the line is outside the display we return
if(y >= r->height)
if (y >= r->height)
return;
// now print the character
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment