diff options
Diffstat (limited to 'sword1/sword1.cpp')
-rw-r--r-- | sword1/sword1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sword1/sword1.cpp b/sword1/sword1.cpp index 4e6a480a73..0628ade213 100644 --- a/sword1/sword1.cpp +++ b/sword1/sword1.cpp @@ -579,14 +579,14 @@ void SwordEngine::delay(int32 amount) { //copied and mutilated from sky.cpp break; case OSystem::EVENT_LBUTTONDOWN: _mouseState |= BS1L_BUTTON_DOWN; -#if defined(_WIN32_WCE) || defined(__PALM_OS__) +#if defined(_WIN32_WCE) || defined(PALMOS_MODE) _mouseX = event.mouse.x; _mouseY = event.mouse.y; #endif break; case OSystem::EVENT_RBUTTONDOWN: _mouseState |= BS1R_BUTTON_DOWN; -#if defined(_WIN32_WCE) || defined(__PALM_OS__) +#if defined(_WIN32_WCE) || defined(PALMOS_MODE) _mouseX = event.mouse.x; _mouseY = event.mouse.y; #endif |