Skip to content

Commit

Permalink
Merge branch 'sa' into mis
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchcore committed Oct 4, 2020
2 parents 7933ecd + 5cc9a6c commit 425e70b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions world.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ void render_world(GameState* state, u8g2_t* fb, uint32_t t) {

if(state->combo_text) {
u8g2_SetDrawColor(fb, 0);
u8g2_DrawBox(fb, SCREEN_WIDTH / 2, 0, SCREEN_WIDTH / 2, 25);
u8g2_DrawBox(fb, SCREEN_WIDTH / 2 - 15, 0, SCREEN_WIDTH / 2 + 15, 25);
u8g2_SetDrawColor(fb, 1);
u8g2_DrawFrame(fb, SCREEN_WIDTH / 2, 0, SCREEN_WIDTH / 2, 25);
u8g2_DrawStr(fb, SCREEN_WIDTH / 2 + 10, 20, "COCOCOCOMBO!");
u8g2_DrawFrame(fb, SCREEN_WIDTH / 2 - 15, 0, SCREEN_WIDTH / 2 + 15, 25);
u8g2_DrawStr(fb, SCREEN_WIDTH / 2 - 10, 15, "COCOCOCOMBO!");
}
}

0 comments on commit 425e70b

Please sign in to comment.