Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21290/src
Modified Files:
Tag: supertux_0_1_1_branch
level.cpp
Log Message:
extended "level higher than 15 tiles" warning
(why is it shown three times, anyway?)
Index: level.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/level.cpp,v
retrieving revision 1.68.2.2
retrieving revision 1.68.2.3
diff -u -d -r1.68.2.2 -r1.68.2.3
--- level.cpp 27 Jul 2004 12:00:14 -0000 1.68.2.2
+++ level.cpp 27 Jul 2004 13:03:07 -0000 1.68.2.3
@@ -483,6 +483,7 @@
if(j >= 15)
{
std::cerr << "Warning: Level higher than 15 tiles. Ignoring by cutting tiles.\n";
+ std::cerr << "The level might not be finishable anymore!\n";
break;
}
@@ -500,6 +501,7 @@
if(j >= 15)
{
std::cerr << "Warning: Level higher than 15 tiles. Ignoring by cutting tiles.\n";
+ std::cerr << "The level might not be finishable anymore!\n";
break;
}
@@ -517,6 +519,7 @@
if(j >= 15)
{
std::cerr << "Warning: Level higher than 15 tiles. Ignoring by cutting tiles.\n";
+ std::cerr << "The level might not be finishable anymore!\n";
break;
}
|