diff options
author | Paul Gilbert | 2017-10-09 08:11:57 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-10-09 08:11:57 -0400 |
commit | fcf0ac1da2d0f8015533198ff779a522c610a6f8 (patch) | |
tree | 303a58cdcf4987f2e5ff0c2a1f92c4e4763223fb /engines | |
parent | 721041bc3083d45174f4bcd119ba192a9385a452 (diff) | |
download | scummvm-rg350-fcf0ac1da2d0f8015533198ff779a522c610a6f8.tar.gz scummvm-rg350-fcf0ac1da2d0f8015533198ff779a522c610a6f8.tar.bz2 scummvm-rg350-fcf0ac1da2d0f8015533198ff779a522c610a6f8.zip |
TITANIC: DE: Fix bomb password
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/game/code_wheel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/titanic/game/code_wheel.cpp b/engines/titanic/game/code_wheel.cpp index 213dda2311..29ae8e683f 100644 --- a/engines/titanic/game/code_wheel.cpp +++ b/engines/titanic/game/code_wheel.cpp @@ -52,9 +52,9 @@ static const int END_FRAMES_DE2[28] = { }; static const int CORRECT_VALUES_DE[3][8] = { - { 14, 2, 7, 4, 8, 18, 18, 4 }, - { 17, 12, 0, 6, 10, 11, 20, 6 }, - { 18, 13, 8, 4, 12, 0, 13, 3 } + { 2, 7, 4, 8, 18, 18, 4, 17 }, + { 12, 0, 6, 10, 11, 20, 6, 18 }, + { 13, 8, 4, 12, 0, 13, 3, 26 } }; static const int START_FRAMES_DE[28] = { 0, 7, 15, 22, 29, 37, 44, 51, 58, 66, |