xzbox: Fix misleading indentation that triggered GCC11 warnings

Change-Id: Ice462ef188dba3bc8ffc46c32142fc29d70e1a68
This commit is contained in:
Solomon Peachy 2021-04-23 08:42:10 -04:00
parent 03695429cf
commit ebb9090004

View file

@ -512,8 +512,9 @@ int zx_kbd_input(char* text/*, int buflen*/)
len_utf8 = rb->utf8length(text);
#endif
FOR_NB_SCREENS(l)
{
rb->screens[l]->clear_display();
}
/* draw page */
FOR_NB_SCREENS(l)
@ -533,7 +534,6 @@ int zx_kbd_input(char* text/*, int buflen*/)
}
}
/* separator */
FOR_NB_SCREENS(l)
{
@ -581,7 +581,6 @@ int zx_kbd_input(char* text/*, int buflen*/)
}
cur_blink = !cur_blink;
/* highlight the key that has focus */
FOR_NB_SCREENS(l)
{
@ -593,7 +592,9 @@ int zx_kbd_input(char* text/*, int buflen*/)
}
FOR_NB_SCREENS(l)
{
rb->screens[l]->update();
}
button = rb->button_get_w_tmo(HZ/2);