diff options
author | Travis Howell | 2004-02-26 12:05:13 +0000 |
---|---|---|
committer | Travis Howell | 2004-02-26 12:05:13 +0000 |
commit | dcdf169e0073639b9024d861af37fa455f0ca6d2 (patch) | |
tree | 23aea42cc6afcd432022f145235caa63455e4ed7 /simon | |
parent | 5c7c6ca2a3e930faba8b0f26841093de3a1e97f4 (diff) | |
download | scummvm-rg350-dcdf169e0073639b9024d861af37fa455f0ca6d2.tar.gz scummvm-rg350-dcdf169e0073639b9024d861af37fa455f0ca6d2.tar.bz2 scummvm-rg350-dcdf169e0073639b9024d861af37fa455f0ca6d2.zip |
Fix crashes in French version of Simon2
svn-id: r13062
Diffstat (limited to 'simon')
-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 dca760e181..364ef19043 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4281,7 +4281,7 @@ void SimonEngine::talk_with_text(uint vga_sprite_id, uint color, const char *str } // while_8_end - if (num_of_rows == 4) { + if (num_of_rows >= 4) { while (strlen(string_ptr) > letters_per_row) { m = letters_per_row; string_ptr_2 += m; |