diff options
author | Travis Howell | 2006-04-17 01:04:08 +0000 |
---|---|---|
committer | Travis Howell | 2006-04-17 01:04:08 +0000 |
commit | 3497bab17cc2a10d5200a274ac3b2932797b6c97 (patch) | |
tree | a6e9e9c2798628e2b1964837fc89c46187a1844c /engines | |
parent | 30645d5e0585140ba13c6c490bb5ed067fea28e1 (diff) | |
download | scummvm-rg350-3497bab17cc2a10d5200a274ac3b2932797b6c97.tar.gz scummvm-rg350-3497bab17cc2a10d5200a274ac3b2932797b6c97.tar.bz2 scummvm-rg350-3497bab17cc2a10d5200a274ac3b2932797b6c97.zip |
Fix box selection after vertical scrolling in FF
svn-id: r21957
Diffstat (limited to 'engines')
-rw-r--r-- | engines/simon/verb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/verb.cpp b/engines/simon/verb.cpp index 1953f48cd7..df45fd1432 100644 --- a/engines/simon/verb.cpp +++ b/engines/simon/verb.cpp @@ -685,7 +685,7 @@ void SimonEngine::boxController(uint x, uint y, uint mode) { if (mode != 0 && mode != 3) { _lastHitArea = best_ha; _variableArray[1] = x; - _variableArray[2] = y - _scrollY; + _variableArray[2] = y; } if (best_ha->flags & kBFNoTouchName) { |