diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/gfx.cpp | 2 | ||||
-rw-r--r-- | engines/hdb/hdb.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/engines/hdb/gfx.cpp b/engines/hdb/gfx.cpp index f1b101286c..e0ded0f817 100644 --- a/engines/hdb/gfx.cpp +++ b/engines/hdb/gfx.cpp @@ -177,7 +177,7 @@ bool Gfx::init() { _starField[3] = getPicture(PIC_STAR256); _snowflake = getPicture(PIC_SNOWFLAKE); } else { - for (int i = 0; i < 7; i++) + for (int i = 0; i < 8; i++) _mousePointer[i] = NULL; for (int i = 0; i < 4; i++) diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index cfe57cca4c..630766e74c 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -177,6 +177,8 @@ bool HDBGame::init() { _systemInit = true; if (!g_hdb->isPPC()) _loadingScreenGfx = _gfx->loadPic(PIC_LOADSCREEN); + else + _loadingScreenGfx = NULL; return true; } |