diff options
Diffstat (limited to 'engines/hdb/gfx.cpp')
-rw-r--r-- | engines/hdb/gfx.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/hdb/gfx.cpp b/engines/hdb/gfx.cpp index b41394b63b..6c743ea55e 100644 --- a/engines/hdb/gfx.cpp +++ b/engines/hdb/gfx.cpp @@ -257,10 +257,6 @@ void Gfx::updateVideo() { } void Gfx::drawPointer() { - - if (g_hdb->isPPC()) - return; - static int anim = 0; static uint32 animTime = 0; @@ -279,8 +275,7 @@ void Gfx::drawPointer() { } void Gfx::setPointerState(int value) { - if (!g_hdb->isPPC()) - _pointerDisplayable = value; + _pointerDisplayable = value; } void Gfx::setFade(bool fadeIn, bool black, int steps) { |