summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-12-15 03:42:41 +0000
committerbelugas <belugas@openttd.org>2007-12-15 03:42:41 +0000
commitc8f4810dac246d61d84ad5c87ba9b5933d9d611a (patch)
tree4769dd27c285385c97c6466cc452460699d990b4
parent57a83e7c76f13ec1342aae89dc92dc10d9a4bd37 (diff)
downloadopenttd-c8f4810dac246d61d84ad5c87ba9b5933d9d611a.tar.xz
(svn r11635) -Codechange: Give a more informative debug message when encountering unknown newgrf feature in action 00 handling.(FS#1551, Bilbo)
-rw-r--r--src/newgrf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index a24d9aba0..89c6b6112 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -2195,7 +2195,7 @@ static void FeatureChangeInfo(byte *buf, int len)
break;
}
- if (ignoring) grfmsg(2, "FeatureChangeInfo: Ignoring property 0x%02X (not implemented)", prop);
+ if (ignoring) grfmsg(1, "FeatureChangeInfo: Ignoring property 0x%02X of feature 0x%02X (not implemented)", prop, feature);
}
}