diff options
author | Strangerke | 2016-06-04 14:53:46 +0200 |
---|---|---|
committer | Strangerke | 2016-06-04 14:53:46 +0200 |
commit | 561d7c88296b37713ee1f385f06c262ad53202d4 (patch) | |
tree | 53ec142ccddd4367d3e6a5e846bea0b4ca6f68dc /engines/gnap | |
parent | 5ca116863b64eb9f31729c12e4d65e03a2fd5cc3 (diff) | |
download | scummvm-rg350-561d7c88296b37713ee1f385f06c262ad53202d4.tar.gz scummvm-rg350-561d7c88296b37713ee1f385f06c262ad53202d4.tar.bz2 scummvm-rg350-561d7c88296b37713ee1f385f06c262ad53202d4.zip |
GNAP: Fix crash in scene 9
Diffstat (limited to 'engines/gnap')
-rw-r--r-- | engines/gnap/scenes/group0.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gnap/scenes/group0.cpp b/engines/gnap/scenes/group0.cpp index 438c1602e0..e76fd9bbd2 100644 --- a/engines/gnap/scenes/group0.cpp +++ b/engines/gnap/scenes/group0.cpp @@ -3379,7 +3379,7 @@ int Scene09::init() { } void Scene09::updateHotspots() { - _vm->setHotspot(kHS09Platypus, 0, 200, 0, 0, SF_WALKABLE | SF_TALK_CURSOR | SF_GRAB_CURSOR | SF_LOOK_CURSOR); + _vm->setHotspot(kHS09Platypus, 0, 0, 0, 0, SF_WALKABLE | SF_TALK_CURSOR | SF_GRAB_CURSOR | SF_LOOK_CURSOR); _vm->setHotspot(kHS09ExitKitchen, 280, 200, 380, 400, SF_EXIT_U_CURSOR); _vm->setHotspot(kHS09ExitHouse, 790, 200, 799, 450, SF_EXIT_R_CURSOR | SF_WALKABLE); _vm->setHotspot(kHS09Trash, 440, 310, 680, 420, SF_PLAT_CURSOR | SF_TALK_CURSOR | SF_GRAB_CURSOR | SF_LOOK_CURSOR); |