This commit is contained in:
2025-10-06 15:43:27 -05:00
parent ea50d893d4
commit 12c31ba9d1
6 changed files with 285 additions and 21 deletions

View File

@@ -10,8 +10,15 @@
#include "game/minesweeper/scene/scenesweep.h"
#include "scene/scenemanager.h"
#include "console/console.h"
#include "display/screen.h"
errorret_t gameInit(void) {
// Setup screen
// SCREEN.mode = SCREEN_MODE_FIXED_HEIGHT;
// SCREEN.fixedHeight.height = 270;
SCREEN.mode = SCREEN_MODE_ASPECT_RATIO;
SCREEN.aspectRatio.ratio = 16.0f / 9.0f;
errorChain(uiInit());
sceneManagerRegisterScene(&SCENE_SWEEP);