summaryrefslogtreecommitdiff
path: root/src/game-settings.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-settings.hpp')
-rw-r--r--src/game-settings.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game-settings.hpp b/src/game-settings.hpp
index 651d827..46f5d38 100644
--- a/src/game-settings.hpp
+++ b/src/game-settings.hpp
@@ -42,11 +42,11 @@ struct GameSettings {
} args;
struct runtime {
// current level
- LevelHandle activeLevel = LevelHandle_MAX;
+ pke_level *activeLevel = nullptr;
// level to start loading
- LevelHandle nextLevel = LevelHandle_MAX;
+ pke_level *nextLevel = nullptr;
// level to unload
- LevelHandle previousLevel = LevelHandle_MAX;
+ pke_level *previousLevel = nullptr;
bool was_framebuffer_resized = false;
} rt;
struct stats {