aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp5
-rw-r--r--common/util.h3
2 files changed, 5 insertions, 3 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 3fe3db43c9..1f77b42b32 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -338,8 +338,9 @@ const struct GameOpt {
{ GUIO_MIDIMT32, "midiMt32" },
{ GUIO_MIDIGM, "midiGM" },
- { GUIO_NOASPECT, "noAspect" },
-
+ { GUIO_NOASPECT, "noAspect" },
+ { GUIO_EGAUNDITHER, "egaUndither" },
+
{ GUIO_NONE, 0 }
};
diff --git a/common/util.h b/common/util.h
index 8059a3c5b2..f8d4c3b385 100644
--- a/common/util.h
+++ b/common/util.h
@@ -98,7 +98,8 @@ template<typename T> inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; }
#define GUIO_MIDIMT32 "\017"
#define GUIO_MIDIGM "\020"
-#define GUIO_NOASPECT "\021"
+#define GUIO_NOASPECT "\021"
+#define GUIO_EGAUNDITHER "\022"
#define GUIO1(a) (a)
#define GUIO2(a,b) (a b)