Skip to content

Commit

Permalink
hashbrown: fix default flags garbage value
Browse files Browse the repository at this point in the history
  • Loading branch information
and3rson committed Mar 9, 2024
1 parent 58a1c28 commit 05a8c2e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion firmware/hashbrown/src/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ App::App(const char *name, uint16_t x, uint16_t y, uint16_t w, uint16_t h) : nam
backCanvas->fillScreen(0);
backCanvasMutex = xSemaphoreCreateMutex();
isDrawQueued = false;
Serial.println("Created app " + String(name) + " at " + String(x) + ", " + String(y) + " with size " + String(w) + "x" + String(h));
flags = AppFlags::APP_FLAG_NONE;
Serial.println(
"Created app " + String(name) + " at " + String(x) + ", " + String(y) + " with size " + String(w) + "x" +
String(h)
);
}

void App::start() {
Expand Down

0 comments on commit 05a8c2e

Please sign in to comment.