diff options
author | Eugene Sandulenko | 2010-08-14 19:55:28 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-10-12 22:42:44 +0000 |
commit | 031a2fc88ed9c8df3c1d4eced7969724b9328bc3 (patch) | |
tree | ecbf93c45b56b6df3477193d60f2fcdcb03756e5 | |
parent | 5cf67ce36f5ce169249bc3f74e31b02317a0002a (diff) | |
download | scummvm-rg350-031a2fc88ed9c8df3c1d4eced7969724b9328bc3.tar.gz scummvm-rg350-031a2fc88ed9c8df3c1d4eced7969724b9328bc3.tar.bz2 scummvm-rg350-031a2fc88ed9c8df3c1d4eced7969724b9328bc3.zip |
SWORD25: Final linking fixes. Now it links!
svn-id: r53234
-rw-r--r-- | engines/sword25/input/scummvminput.cpp | 4 | ||||
-rw-r--r-- | engines/sword25/math/geometry.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/sword25/input/scummvminput.cpp b/engines/sword25/input/scummvminput.cpp index 76a7f0fe09..30d2940d73 100644 --- a/engines/sword25/input/scummvminput.cpp +++ b/engines/sword25/input/scummvminput.cpp @@ -188,8 +188,8 @@ void ScummVMInput::TestForLeftDoubleClick() { // ----------------------------------------------------------------------------- -void AlterKeyboardState(int keycode, byte newState) { - +void ScummVMInput::AlterKeyboardState(int keycode, byte newState) { + m_KeyboardState[m_CurrentState][keycode] = newState; } // ----------------------------------------------------------------------------- diff --git a/engines/sword25/math/geometry.h b/engines/sword25/math/geometry.h index 2ea02c8f35..4fee262f2e 100644 --- a/engines/sword25/math/geometry.h +++ b/engines/sword25/math/geometry.h @@ -45,7 +45,7 @@ class BS_Kernel; class BS_Geometry : public BS_Service { public: BS_Geometry(BS_Kernel *pKernel); - virtual ~BS_Geometry(); + virtual ~BS_Geometry() {} private: bool _RegisterScriptBindings(); |