aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BKeyboardState.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/BKeyboardState.cpp')
-rw-r--r--engines/wintermute/Base/BKeyboardState.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/Base/BKeyboardState.cpp b/engines/wintermute/Base/BKeyboardState.cpp
index ba8d807462..83deaa0306 100644
--- a/engines/wintermute/Base/BKeyboardState.cpp
+++ b/engines/wintermute/Base/BKeyboardState.cpp
@@ -73,7 +73,7 @@ void CBKeyboardState::handleKeyRelease(Common::Event *event) {
//////////////////////////////////////////////////////////////////////////
// high level scripting interface
//////////////////////////////////////////////////////////////////////////
-ERRORCODE CBKeyboardState::scCallMethod(CScScript *script, CScStack *stack, CScStack *thisStack, const char *name) {
+bool CBKeyboardState::scCallMethod(CScScript *script, CScStack *stack, CScStack *thisStack, const char *name) {
//////////////////////////////////////////////////////////////////////////
// IsKeyDown
//////////////////////////////////////////////////////////////////////////
@@ -173,7 +173,7 @@ CScValue *CBKeyboardState::scGetProperty(const char *name) {
//////////////////////////////////////////////////////////////////////////
-ERRORCODE CBKeyboardState::scSetProperty(const char *name, CScValue *value) {
+bool CBKeyboardState::scSetProperty(const char *name, CScValue *value) {
/*
//////////////////////////////////////////////////////////////////////////
// Name
@@ -195,7 +195,7 @@ const char *CBKeyboardState::scToString() {
//////////////////////////////////////////////////////////////////////////
-ERRORCODE CBKeyboardState::readKey(Common::Event *event) {
+bool CBKeyboardState::readKey(Common::Event *event) {
//_currentPrintable = (event->type == SDL_TEXTINPUT); // TODO
_currentCharCode = keyCodeToVKey(event);
if ((_currentCharCode <= Common::KEYCODE_z && _currentCharCode >= Common::KEYCODE_a) ||
@@ -215,7 +215,7 @@ ERRORCODE CBKeyboardState::readKey(Common::Event *event) {
//////////////////////////////////////////////////////////////////////////
-ERRORCODE CBKeyboardState::persist(CBPersistMgr *persistMgr) {
+bool CBKeyboardState::persist(CBPersistMgr *persistMgr) {
//if(!persistMgr->_saving) cleanup();
CBScriptable::persist(persistMgr);