aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/hdb/gfx.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/hdb/gfx.cpp b/engines/hdb/gfx.cpp
index 55c69f469d..2a8a98aebe 100644
--- a/engines/hdb/gfx.cpp
+++ b/engines/hdb/gfx.cpp
@@ -278,8 +278,12 @@ void Gfx::drawPointer() {
return;
// If we are in game and the cursor should be displayed, draw it
- if (_showCursor || g_hdb->getGameState() != GAME_PLAY)
- _mousePointer[anim]->drawMasked(g_hdb->_input->getMouseX() - 16, g_hdb->_input->getMouseY() - 16);
+ if (g_hdb->isPPC()) {
+ debug(9, "STUB: Draw Pointer in PPC");
+ } else {
+ if (_showCursor || g_hdb->getGameState() != GAME_PLAY)
+ _mousePointer[anim]->drawMasked(g_hdb->_input->getMouseX() - 16, g_hdb->_input->getMouseY() - 16);
+ }
}
void Gfx::setPointerState(int value) {