Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32536/src
Modified Files:
Tag: supertux_0_1_1_branch
level.cpp
Log Message:
Added the layer that has more than 15 tiles in the warning message, so that they are not equal, and thus looking like if it was a bug.
Index: level.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/level.cpp,v
retrieving revision 1.68.2.3
retrieving revision 1.68.2.4
diff -u -d -r1.68.2.3 -r1.68.2.4
--- level.cpp 27 Jul 2004 13:03:07 -0000 1.68.2.3
+++ level.cpp 27 Jul 2004 16:43:23 -0000 1.68.2.4
@@ -482,8 +482,9 @@
{
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";
+ std::cerr << "Warning: Level higher than 15 interactive tiles."
+ "Ignoring by cutting tiles.\n"
+ "The level might not be finishable anymore!\n";
break;
}
@@ -500,8 +501,8 @@
{
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";
+ std::cerr << "Warning: Level higher than 15 background tiles."
+ "Ignoring by cutting tiles.\n";
break;
}
@@ -518,8 +519,8 @@
{
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";
+ std::cerr << "Warning: Level higher than 15 foreground tiles."
+ "Ignoring by cutting tiles.\n";
break;
}
|