aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/gfx.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 9b974699a7..478e1c2200 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -325,9 +325,8 @@ void ScummEngine::drawDirtyScreenParts() {
// Update verbs
updateDirtyScreen(kVerbVirtScreen);
- // In V1-V3, update the conversation area (at the top of the screen)
- if (_version <= 3)
- updateDirtyScreen(kTextVirtScreen);
+ // Update the conversation area (at the top of the screen)
+ updateDirtyScreen(kTextVirtScreen);
// Update game area ("stage")
if (camera._last.x != camera._cur.x || (_features & GF_NEW_CAMERA && (camera._cur.y != camera._last.y))) {