aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorathrxx2011-12-04 14:39:48 +0100
committerathrxx2011-12-04 15:05:00 +0100
commit18e84f9c1138ea4ce66cbbea53e6957bee3e588f (patch)
treed298cfeda8fb70a455d398ac8bac7daa6bfc60e3 /common
parent73a0e833569bd4474c032fdf43b5c59dd55ee2fc (diff)
downloadscummvm-rg350-18e84f9c1138ea4ce66cbbea53e6957bee3e588f.tar.gz
scummvm-rg350-18e84f9c1138ea4ce66cbbea53e6957bee3e588f.tar.bz2
scummvm-rg350-18e84f9c1138ea4ce66cbbea53e6957bee3e588f.zip
GUI: fix GUIO_NOSPEECH/GUIO_NOSFX settings
Diffstat (limited to 'common')
-rw-r--r--common/util.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/util.h b/common/util.h
index 66bcde8adc..08a49f3c3a 100644
--- a/common/util.h
+++ b/common/util.h
@@ -82,12 +82,12 @@ template<typename T> inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; }
#define GUIO_NOSUBTITLES "\001"
#define GUIO_NOMUSIC "\002"
#define GUIO_NOSPEECH "\003"
-#define GUIO_NOSFX "\003"
-#define GUIO_NOMIDI "\004"
-#define GUIO_NOLAUNCHLOAD "\005"
+#define GUIO_NOSFX "\004"
+#define GUIO_NOMIDI "\005"
+#define GUIO_NOLAUNCHLOAD "\006"
-#define GUIO_MIDIPCSPK "\006"
-#define GUIO_MIDICMS "\007"
+#define GUIO_MIDIPCSPK "\007"
+#define GUIO_MIDICMS "\008"
#define GUIO_MIDIPCJR "\010"
#define GUIO_MIDIADLIB "\011"
#define GUIO_MIDIC64 "\012"