diff options
author | Eugene Sandulenko | 2010-06-15 10:19:48 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-06-15 10:19:48 +0000 |
commit | b743cc316e3a0af47880f98f01f1437dc5b8124d (patch) | |
tree | 6042461c65ce2c4fff1aab8a371b3c98fb3f7860 /engines/drascula | |
parent | eac1fdc7caf115f2deacecd8438cb650b403e6c2 (diff) | |
download | scummvm-rg350-b743cc316e3a0af47880f98f01f1437dc5b8124d.tar.gz scummvm-rg350-b743cc316e3a0af47880f98f01f1437dc5b8124d.tar.bz2 scummvm-rg350-b743cc316e3a0af47880f98f01f1437dc5b8124d.zip |
Drascula: Fix bug #2929931.
Bug #2929931: "DRASCULA: Graphic Glitches". Cursor graphics was
not loaded at needed time.
svn-id: r49707
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/converse.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/drascula/converse.cpp b/engines/drascula/converse.cpp index deefcaddbe..122e473f15 100644 --- a/engines/drascula/converse.cpp +++ b/engines/drascula/converse.cpp @@ -288,9 +288,10 @@ void DrasculaEngine::response(int function) { if (currentChapter == 2) { if (function == 16) animation_16_2(); - else if (function == 20) + else if (function == 20) { + loadPic(menuBackground, backSurface); animation_20_2(); - else if (function == 23) + } else if (function == 23) animation_23_2(); else if (function == 29) animation_29_2(); |