From 32caeeb9955db3cd901ff2d9d1dbcbc31e76938c Mon Sep 17 00:00:00 2001 From: Klemen Plestenjak Date: Wed, 7 Feb 2024 10:59:05 +0100 Subject: [PATCH] Remove continue button --- game/systems/s_ui.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/game/systems/s_ui.c b/game/systems/s_ui.c index 8d8c0d3..2eb7d3d 100644 --- a/game/systems/s_ui.c +++ b/game/systems/s_ui.c @@ -283,9 +283,6 @@ void drawMainMenuUI(Game *game, f32 dt) { .type = BZ_UI_LAYOUT_FLEX_BOX, .flags = BZ_UI_FLEX_DIR_COLUMN | BZ_UI_FLEX_ALIGN_CENTER }); - if (uiMainMenuButton("Continue", false)) { - - } if (uiMainMenuButton("Play", true)) { setScreen(game, SCREEN_GAME); unloadMap(game);