aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
authorMax Horn2005-02-25 10:00:06 +0000
committerMax Horn2005-02-25 10:00:06 +0000
commit51391279ccfbe064c017e1f86fae1995319151d2 (patch)
tree1764bd413df78d99355e4b9062ad6d20192fc2b2 /scumm/scumm.cpp
parenta82cff48162e446923b29b56996fd4ed363a0c37 (diff)
downloadscummvm-rg350-51391279ccfbe064c017e1f86fae1995319151d2.tar.gz
scummvm-rg350-51391279ccfbe064c017e1f86fae1995319151d2.tar.bz2
scummvm-rg350-51391279ccfbe064c017e1f86fae1995319151d2.zip
cleanup
svn-id: r16910
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 842ba79eef..08521e8058 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -463,11 +463,13 @@ enum genMethods {
kGenPC
};
-static struct substResFileNames {
+struct SubstResFileNames {
const char *winName;
const char *macName;
int genMethod;
-} substResFileNameTable[] = {
+};
+
+static SubstResFileNames substResFileNameTable[] = {
{ "Intentionally/left/blank", "", kGenMacNoParens},
{ "racedemo", "500demo", kGenPC},
{ "Spydemo", "foxdemo", kGenPC},
@@ -1483,7 +1485,7 @@ void ScummEngine_v90he::scummInit() {
_heObjectNum = 0;
_hePaletteNum = 0;
- ((ScummEngine_v90he *)this)->spritesResetTables(0);
+ spritesResetTables(0);
memset(&_wizParams, 0, sizeof(_wizParams));
}