diff options
author | Travis Howell | 2005-11-11 08:49:58 +0000 |
---|---|---|
committer | Travis Howell | 2005-11-11 08:49:58 +0000 |
commit | 575588b188ae35f6522a448845d1192090aba8fd (patch) | |
tree | 4c38a5cf7bb51c0f060cc149133b167678f0d935 | |
parent | d17e9165435ce88ec1406ac1b3b47c1e6895f325 (diff) | |
download | scummvm-rg350-575588b188ae35f6522a448845d1192090aba8fd.tar.gz scummvm-rg350-575588b188ae35f6522a448845d1192090aba8fd.tar.bz2 scummvm-rg350-575588b188ae35f6522a448845d1192090aba8fd.zip |
Oops, got reversed.
svn-id: r19558
-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 9dd8b3e94d..433810bd12 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -3620,7 +3620,7 @@ void SimonEngine::talk_with_text(uint vgaSpriteId, uint color, const char *strin if (!(_bitArray[8] & 0x20)) b = 3; - x *= 8; + x /= 8; if (y < 2) y = 2; |