From c97c169ac0ff6c0b4705320f4a96251510b3da08 Mon Sep 17 00:00:00 2001 From: Chris Apers Date: Sun, 12 Sep 2004 13:07:15 +0000 Subject: Get rid of _quitCount and _selfQuit svn-id: r15048 --- backends/PalmOS/Src/palmmos.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backends/PalmOS') diff --git a/backends/PalmOS/Src/palmmos.cpp b/backends/PalmOS/Src/palmmos.cpp index 2586a50001..0338c0f9d9 100644 --- a/backends/PalmOS/Src/palmmos.cpp +++ b/backends/PalmOS/Src/palmmos.cpp @@ -69,7 +69,7 @@ void OSystem_PALMOS::setMouseCursor(const byte *buf, uint w, uint h, int hotspot } void OSystem_PALMOS::draw_mouse() { - if (_mouseDrawn || !_mouseVisible || _quitCount) + if (_mouseDrawn || !_mouseVisible) return; _mouseCurState.y = _mouseCurState.y >= _screenHeight ? _screenHeight - 1 : _mouseCurState.y; @@ -156,7 +156,7 @@ void OSystem_PALMOS::draw_mouse() { } void OSystem_PALMOS::undraw_mouse() { - if (!_mouseDrawn || _quitCount) + if (!_mouseDrawn) return; _mouseDrawn = false; -- cgit v1.2.3