aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/hdb/input.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/engines/hdb/input.cpp b/engines/hdb/input.cpp
index fb7f127cdf..15ba7fcf4e 100644
--- a/engines/hdb/input.cpp
+++ b/engines/hdb/input.cpp
@@ -45,9 +45,6 @@ bool Input::init() {
_keyDebug = Common::KEYCODE_F1;
_keyQuit = Common::KEYCODE_F10;
- if (g_hdb->isPPC())
- return true;
-
_mouseX = g_hdb->_screenWidth / 2;
_mouseY = g_hdb->_screenHeight / 2;
@@ -426,9 +423,6 @@ void Input::stylusMove(int x, int y) {
}
void Input::updateMouse(int newX, int newY) {
- if (g_hdb->isPPC())
- return;
-
_mouseX = newX;
_mouseY = newY;
@@ -454,10 +448,6 @@ void Input::updateMouse(int newX, int newY) {
}
void Input::updateMouseButtons(int l, int m, int r) {
-
- if (g_hdb->isPPC())
- return;
-
_mouseLButton += l;
_mouseMButton += m;
_mouseRButton += r;
@@ -500,10 +490,6 @@ void Input::updateMouseButtons(int l, int m, int r) {
}
void Input::updateKeys(Common::Event event, bool keyDown) {
-
- if (g_hdb->isPPC())
- return;
-
static int current = 0, last = 0;
if (keyDown && event.kbd.keycode == _keyQuit) {