diff options
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 775e88d7ff..9edad29345 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -1884,7 +1884,7 @@ void SimonEngine::f10_key() { continue; } - if (ha->y >= limit || ha->y >= _vga_var8) + if (ha->y >= limit || ((_game & GF_SIMON2) && ha->y >= _vga_var8)) continue; y_ = (ha->height >> 1) - 4 + ha->y; |