diff options
author | Max Horn | 2003-08-24 21:58:16 +0000 |
---|---|---|
committer | Max Horn | 2003-08-24 21:58:16 +0000 |
commit | 10d4af4eaebd86853178d41d5b248fd0b22985f8 (patch) | |
tree | 6f3417ad85ef4c9c5a1728561deda24d5240ef06 | |
parent | 57493197e87c24aaa6db2ebbb0f0abdcdfa87a3b (diff) | |
download | scummvm-rg350-10d4af4eaebd86853178d41d5b248fd0b22985f8.tar.gz scummvm-rg350-10d4af4eaebd86853178d41d5b248fd0b22985f8.tar.bz2 scummvm-rg350-10d4af4eaebd86853178d41d5b248fd0b22985f8.zip |
fix for bug #782727 (COMI: no sentence line while inventory is shown) by drawing blast text after blast objects
svn-id: r9853
-rw-r--r-- | scumm/scummvm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 91bcb0724c..b3f170a0d6 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -1369,13 +1369,13 @@ load_game: checkV2MouseOver(_mouse); } - drawBlastTexts(); drawBlastObjects(); + drawBlastTexts(); if (_version == 8) processUpperActors(); drawDirtyScreenParts(); - removeBlastObjects(); removeBlastTexts(); + removeBlastObjects(); if (_version <= 5) playActorSounds(); |