From e7d9bdbee372e8268e34f9f54c46b257e7e805ba Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 31 Jul 2004 08:55:08 +0000 Subject: Avoid gcc warning svn-id: r14373 --- simon/simon.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'simon') diff --git a/simon/simon.cpp b/simon/simon.cpp index 5548b5714c..445bd15538 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4183,7 +4183,7 @@ void SimonEngine::talk_with_text(uint vga_sprite_id, uint color, const char *str char *convertedString2 = convertedString; int16 height, len_div_3; int stringLength = strlen(string); - int pos, padding, lettersPerRow, lettersPerRowJustified; + int padding, lettersPerRow, lettersPerRowJustified; const int textHeight = 10; height = textHeight; @@ -4205,6 +4205,7 @@ void SimonEngine::talk_with_text(uint vga_sprite_id, uint color, const char *str assert(stringLength > 0); while (stringLength > 0) { + int pos = 0; if (stringLength > lettersPerRow) { int removeLastWord = 0; if (lettersPerRow > lettersPerRowJustified) { -- cgit v1.2.3