diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/util.h b/common/util.h index e147cb6c5e..ea4d280fbc 100644 --- a/common/util.h +++ b/common/util.h @@ -270,12 +270,12 @@ extern const char *getRenderModeCode(RenderMode id); extern const char *getRenderModeDescription(RenderMode id); enum GameGUIOption { - GUIO_NONE = 0, + GUIO_NONE = 0, GUIO_NOSUBTITLES = (1 << 0), GUIO_NOMUSIC = (1 << 1), GUIO_NOSPEECH = (1 << 2), - GUIO_NOSFX = (1 << 3), - GUIO_NOMIDI = (1 << 4), + GUIO_NOSFX = (1 << 3), + GUIO_NOMIDI = (1 << 4), GUIO_NOLAUNCHLOAD = (1 << 5) }; |