diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-07-29 11:05:40 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-02 18:35:07 +0200 |
commit | c07a8573590f9d0daf82bebe053411e0b9e6ad9f (patch) | |
tree | 9a224410356ebd36cffc37f6b026cf72d077e365 /launcher | |
parent | 76df836378aa5dd90b0d039358d9927628d48878 (diff) | |
download | PrismLauncher-c07a8573590f9d0daf82bebe053411e0b9e6ad9f.tar.gz PrismLauncher-c07a8573590f9d0daf82bebe053411e0b9e6ad9f.tar.bz2 PrismLauncher-c07a8573590f9d0daf82bebe053411e0b9e6ad9f.zip |
fix: remove irregular enum initialization
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/minecraft/World.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/World.h b/launcher/minecraft/World.h index 10328cce..dc3733d5 100644 --- a/launcher/minecraft/World.h +++ b/launcher/minecraft/World.h @@ -28,7 +28,7 @@ struct GameType { enum { Unknown = -1, - Survival = 0, + Survival, Creative, Adventure, Spectator |