We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f890a6c + 9be3d9f commit 01ae93fCopy full SHA for 01ae93f
src/screen.c
@@ -43,7 +43,7 @@ void screen_print_debug(const char* message, int duration)
43
UG_FontSelect(&font_font_a_9X9);
44
UG_PutString(0, 0, print, false);
45
UG_SendBuffer();
46
- delay_ms(duration);
+ if (duration > 0) delay_ms(duration);
47
}
48
49
void screen_sprintf_debug(int duration, const char* fmt, ...)
0 commit comments