aboutsummaryrefslogtreecommitdiff
path: root/scumm/util.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-04-10 09:58:37 +0000
committerEugene Sandulenko2005-04-10 09:58:37 +0000
commit582c56c236a859da23c287986e1021fa0735f197 (patch)
treebc3d71ab907e1b8b089feeccdcb7c90a88782bd4 /scumm/util.h
parent82c10524b431061e0e79a8ed5eacf894109533b2 (diff)
downloadscummvm-rg350-582c56c236a859da23c287986e1021fa0735f197.tar.gz
scummvm-rg350-582c56c236a859da23c287986e1021fa0735f197.tar.bz2
scummvm-rg350-582c56c236a859da23c287986e1021fa0735f197.zip
Do not hardcode character translation tables and verbs prepositions
in MM NES but extract it directly from ROM. Patch from Quietust svn-id: r17505
Diffstat (limited to 'scumm/util.h')
-rw-r--r--scumm/util.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/scumm/util.h b/scumm/util.h
index 873966eca7..5863a47587 100644
--- a/scumm/util.h
+++ b/scumm/util.h
@@ -65,7 +65,6 @@ public:
uint32 write(const void *ptr, uint32 size);
};
-
typedef enum _res_type {
NES_UNKNOWN,
NES_GLOBDATA,
@@ -79,7 +78,9 @@ typedef enum _res_type {
NES_SPRDESC,
NES_SPRLENS,
NES_SPROFFS,
- NES_SPRDATA
+ NES_SPRDATA,
+ NES_CHARSET,
+ NES_PREPLIST
} res_type;
class ScummNESFile : public BaseScummFile {