static void display_bust(void) {\r
game_state = BJ_RESULT;\r
add_to_games_played = true;\r
- watch_display_text_with_fallback(WATCH_POSITION_BOTTOM, "8UST", " BUST");\r
+ watch_display_text_with_fallback(WATCH_POSITION_BOTTOM, "8UST", "BUST");\r
}\r
\r
static void display_title(void) {\r
game_state = BJ_TITLE_SCREEN;\r
- watch_display_text_with_fallback(WATCH_POSITION_TOP, "BLACK ", "21 ");\r
+ watch_display_text(WATCH_POSITION_TOP_RIGHT, " ");\r
+ watch_display_text_with_fallback(WATCH_POSITION_TOP, "BLACK ", "21");\r
watch_display_text_with_fallback(WATCH_POSITION_BOTTOM, " JACK ", "BLaKJK");\r
}\r
\r
if (state->games_played > 0) { // Avoid dividing by zero\r
win_ratio = (uint8_t)(100 * state->games_won) / state->games_played;\r
}\r
- watch_display_text_with_fallback(WATCH_POSITION_TOP, "WINS ", "WR ");\r
+ watch_display_text(WATCH_POSITION_TOP_RIGHT, " ");\r
+ watch_display_text_with_fallback(WATCH_POSITION_TOP, "WINS ", "WR");\r
sprintf(buf, "%3dPct", win_ratio);\r
watch_display_text(WATCH_POSITION_BOTTOM, buf);\r
}\r