aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorStrangerke2011-10-23 21:44:39 +0200
committerStrangerke2011-10-23 21:45:02 +0200
commitcfa42fee80e422004d4df953e15d8b171e05e50e (patch)
tree76a128036d1730baaa26466ca4ecc2bb84181c0c /common
parent3a196478c69b635c7c1c2d121b30d9710f8bd1e5 (diff)
downloadscummvm-rg350-cfa42fee80e422004d4df953e15d8b171e05e50e.tar.gz
scummvm-rg350-cfa42fee80e422004d4df953e15d8b171e05e50e.tar.bz2
scummvm-rg350-cfa42fee80e422004d4df953e15d8b171e05e50e.zip
LAUNCHER: Add GUIO_NOASPECT to SCUMM engine
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp2
-rw-r--r--common/util.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 1f1b8a1440..3fe3db43c9 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -338,6 +338,8 @@ const struct GameOpt {
{ GUIO_MIDIMT32, "midiMt32" },
{ GUIO_MIDIGM, "midiGM" },
+ { GUIO_NOASPECT, "noAspect" },
+
{ GUIO_NONE, 0 }
};
diff --git a/common/util.h b/common/util.h
index bad07d4cb2..8059a3c5b2 100644
--- a/common/util.h
+++ b/common/util.h
@@ -98,6 +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 GUIO1(a) (a)
#define GUIO2(a,b) (a b)
#define GUIO3(a,b,c) (a b c)