Fixes bug where stopwatch would forget to draw on first pass.

This commit is contained in:
Travis Goodspeed 2018-08-03 17:48:34 -04:00
parent 058b93089e
commit 8e56257baa

View File

@ -14,7 +14,7 @@
*/
#include "api.h"
#include "stopwatch.h"
static int counting=0;
@ -40,6 +40,9 @@ void stopwatch_init(){
//Draw these once, rather than every frame.
lcd_cleardigit(5); //Space
lcd_cleardigit(2); //Space
//Force a draw on startup.
stopwatch_draw(1);
}
//! Exit form the stopwatch app.