From: Ryan Flegel Date: Mon, 7 Jun 2004 22:06:14 +0000 (+0000) Subject: - fixed type warning on OS X X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=52e9a21b7e88054dcaee7249a83bba368c2cac1a;p=supertux.git - fixed type warning on OS X SVN-Revision: 1425 --- diff --git a/src/leveleditor.cpp b/src/leveleditor.cpp index 8ada081d7..d91363122 100644 --- a/src/leveleditor.cpp +++ b/src/leveleditor.cpp @@ -1782,7 +1782,7 @@ void LevelEditor::showhelp() for(unsigned int t = 0; t < sizeof(text[i])/sizeof(char *); t++) context.draw_text(white_text, text[i][t], Vector(5, 80+(t*white_text->get_height())), LAYER_GUI); - sprintf(str,"Press any key to continue - Page %d/%d?", i, sizeof(text)); + sprintf(str,"Press any key to continue - Page %d/%d?", i, static_cast(sizeof(text))); context.draw_text(gold_text, str, Vector(0, 0), LAYER_GUI); context.do_drawing();