diff options
-rw-r--r-- | scumm/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index 8ad32e8e05..e7663f4e10 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -636,7 +636,7 @@ void Scumm::drawFlashlight() { return; // Calculate the area of the flashlight - if (_gameId == GID_ZAK256 || _gameId == GID_ZAK) { + if (_gameId == GID_ZAK256 || _features & GF_AFTER_V2) { x = _mouse.x + virtscr[0].xstart; y = _mouse.y - virtscr[0].topline; } else { |