diff options
author | Travis Howell | 2005-11-18 14:21:01 +0000 |
---|---|---|
committer | Travis Howell | 2005-11-18 14:21:01 +0000 |
commit | 9fbb4d1c7a7d37ea48a582db1d951d5f950793d7 (patch) | |
tree | 1010721d3e22bd64c90f612ffc7d59a18e6c8f9d | |
parent | 4ca37906ee6d419fd55990c1449ab9934e0f115c (diff) | |
download | scummvm-rg350-9fbb4d1c7a7d37ea48a582db1d951d5f950793d7.tar.gz scummvm-rg350-9fbb4d1c7a7d37ea48a582db1d951d5f950793d7.tar.bz2 scummvm-rg350-9fbb4d1c7a7d37ea48a582db1d951d5f950793d7.zip |
Wrong bit.
svn-id: r19643
-rw-r--r-- | simon/vga.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp index bca0b8069f..39127f04b7 100644 --- a/simon/vga.cpp +++ b/simon/vga.cpp @@ -2168,7 +2168,7 @@ void SimonEngine::vc82_getPathValue() { uint16 var = vc_read_next_word(); - if (vc_get_bit(88) == true) { + if (vc_get_bit(82) == true) { val = _pathValues1[_GPVCount1++]; } else { val = _pathValues[_GPVCount++]; |