diff options
Diffstat (limited to 'engines/hdb/ai-init.cpp')
| -rw-r--r-- | engines/hdb/ai-init.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/hdb/ai-init.cpp b/engines/hdb/ai-init.cpp index 70146ec891..1e6336e252 100644 --- a/engines/hdb/ai-init.cpp +++ b/engines/hdb/ai-init.cpp @@ -956,7 +956,10 @@ AI::AI() { memset(_waypointGfx, 0, sizeof(_waypointGfx)); _debugQMark = NULL; - _youGotY = g_hdb->_screenHeight - 16; + if (g_hdb->isPPC()) + _youGotY = 306; + else + _youGotY = g_hdb->_screenHeight - 16; } AI::~AI() { |
