diff options
-rw-r--r-- | scumm/intern.h | 2 | ||||
-rw-r--r-- | scumm/script_v6.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/scumm/intern.h b/scumm/intern.h index 864c24274a..51c594e336 100644 --- a/scumm/intern.h +++ b/scumm/intern.h @@ -317,6 +317,8 @@ protected: }; const OpcodeEntryV6 *_opcodesV6; + + File _hFileTable[17]; public: Scumm_v6(GameDetector *detector, OSystem *syst) : Scumm(detector, syst) diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 9e3c4aa895..ebf8d7358d 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -2371,8 +2371,7 @@ void Scumm_v6::o6_setBlastObjectWindow() { b = pop(); a = pop(); - warning("o6_bompWindow(%d, %d, %d, %d)", a, b, c, d); - // sub_274EF(a, b, c, d); + warning("o6_setBlastObjectWindow(%d, %d, %d, %d)", a, b, c, d); } void Scumm_v6::o6_kernelSetFunctions() { |