git » fp-git.git » commit ef0c305

Removed debug information

author ecalot
2005-01-24 04:48:10 UTC
committer ecalot
2005-01-24 04:48:10 UTC
parent 02272124c7f03bf281a51fb9f520d0a5b7fc3df2

Removed debug information

FP/src/res/tiles.c +1 -2

diff --git a/FP/src/res/tiles.c b/FP/src/res/tiles.c
index f0caf21..954843a 100644
--- a/FP/src/res/tiles.c
+++ b/FP/src/res/tiles.c
@@ -35,8 +35,7 @@ tiles.c: FreePrince : Tile functions
 
 int evaluate(tTile tile,int type) { /* type is the number in the modifier */
 	if (!tile.moreInfo) {
-		printf("Tile Error: trying to use a tile that hasn't extra information\n");
-		printf("code=%d back=%d\n",tile.code-1,tile.back);
+		fprintf(stderr,"Runtime Error: trying to use a tile that hasn't extra information\n");
 		return 0;
 	}
 	TILES_MACROS_CASE(type,tile)