diff options
Diffstat (limited to 'engines/groovie/script.h')
-rw-r--r-- | engines/groovie/script.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/groovie/script.h b/engines/groovie/script.h index 9e35d6fcde..e9e0be69ec 100644 --- a/engines/groovie/script.h +++ b/engines/groovie/script.h @@ -58,7 +58,7 @@ public: void directGameLoad(int slot); void step(); - void setMouseClick(uint8 button); + void setMouseClick(); void setKbdChar(uint8 c); Common::String &getContext(); @@ -96,7 +96,7 @@ private: // Input bool _mouseClicked; - uint8 _eventMouseClicked; + bool _eventMouseClicked; uint8 _kbdChar; uint8 _eventKbdChar; uint16 _inputLoopAddress; @@ -115,7 +115,6 @@ private: Common::SeekableReadStream *_videoFile; uint32 _videoRef; uint16 _bitflags; - uint16 _videoSkipAddress; // Debugging Debugger *_debugger; @@ -229,9 +228,7 @@ private: void o2_setbackgroundsong(); void o2_videofromref(); void o2_vdxtransition(); - void o2_setvideoskip(); void o2_stub52(); - void o2_setscriptend(); }; } // End of Groovie namespace |