aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/wage.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-04-05 18:48:29 +0200
committerEugene Sandulenko2016-04-05 18:48:29 +0200
commit6775d86d0647ada89972f0eb9531c3a857274332 (patch)
tree92ae2b6f13980cb6b01f5f2ad898898bc8881fd6 /engines/wage/wage.h
parent644b4dcd0b3a01751ed525370a9c6bc4ccc4bbc6 (diff)
downloadscummvm-rg350-6775d86d0647ada89972f0eb9531c3a857274332.tar.gz
scummvm-rg350-6775d86d0647ada89972f0eb9531c3a857274332.tar.bz2
scummvm-rg350-6775d86d0647ada89972f0eb9531c3a857274332.zip
WAGE: Fix bugs in original, when people mistype storage scene name
Diffstat (limited to 'engines/wage/wage.h')
-rw-r--r--engines/wage/wage.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/wage/wage.h b/engines/wage/wage.h
index 8ca306aea3..a0be7a70a9 100644
--- a/engines/wage/wage.h
+++ b/engines/wage/wage.h
@@ -75,6 +75,8 @@ typedef Common::Array<Chr *> ChrArray;
typedef Common::List<Obj *> ObjList;
typedef Common::List<Chr *> ChrList;
+#define STORAGESCENE "STORAGE@"
+
enum OperandType {
OBJ = 0,
CHR = 1,
@@ -113,7 +115,7 @@ Common::Rect *readRect(Common::SeekableReadStream *in);
const char *getIndefiniteArticle(const Common::String &word);
const char *prependGenderSpecificPronoun(int gender);
const char *getGenderSpecificPronoun(int gender, bool capitalize);
-
+bool isStorageScene(const Common::String &name);
typedef Common::Array<byte *> Patterns;