Add debug menu option, misc. tweaks

This commit is contained in:
2024-02-13 12:57:29 +01:00
parent dc140027ed
commit 1e20d307ea
7 changed files with 19 additions and 11 deletions

View File

@@ -27,6 +27,7 @@ typedef struct DrawData {
typedef struct Options {
// Video
bool debugMenu;
bool fullscreen;
bool limitFps;
// Audio
@@ -42,6 +43,7 @@ typedef struct GameData {
static GameData getDefaultGameData() {
return (GameData) {
.options = {
.debugMenu = false,
.fullscreen = false,
.limitFps = true,
.master = 0.5f,