diff options
author | Paweł Kołodziejski | 2003-09-13 21:04:47 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-09-13 21:04:47 +0000 |
commit | 199e9632b8f4b0d90fc21640e288e1cb56db8948 (patch) | |
tree | 7113dd2c71050ceff699f4ae845c1441ae08d275 | |
parent | 398af102a1fa8c44088a9567c3095b1a565c272d (diff) | |
download | scummvm-rg350-199e9632b8f4b0d90fc21640e288e1cb56db8948.tar.gz scummvm-rg350-199e9632b8f4b0d90fc21640e288e1cb56db8948.tar.bz2 scummvm-rg350-199e9632b8f4b0d90fc21640e288e1cb56db8948.zip |
fixed badly commit
svn-id: r10244
-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() { |