diff options
author | Max Horn | 2005-02-25 10:00:06 +0000 |
---|---|---|
committer | Max Horn | 2005-02-25 10:00:06 +0000 |
commit | 51391279ccfbe064c017e1f86fae1995319151d2 (patch) | |
tree | 1764bd413df78d99355e4b9062ad6d20192fc2b2 /scumm | |
parent | a82cff48162e446923b29b56996fd4ed363a0c37 (diff) | |
download | scummvm-rg350-51391279ccfbe064c017e1f86fae1995319151d2.tar.gz scummvm-rg350-51391279ccfbe064c017e1f86fae1995319151d2.tar.bz2 scummvm-rg350-51391279ccfbe064c017e1f86fae1995319151d2.zip |
cleanup
svn-id: r16910
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scumm.cpp | 8 |
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)); } |