diff options
author | belugas <belugas@openttd.org> | 2007-12-15 03:42:41 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-12-15 03:42:41 +0000 |
commit | 828c24229128ee5e58b4069211e12023671df73d (patch) | |
tree | 4769dd27c285385c97c6466cc452460699d990b4 | |
parent | 5992187a85e17e6443a67e0269f65e7de798ed25 (diff) | |
download | openttd-828c24229128ee5e58b4069211e12023671df73d.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.cpp | 2 |
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); } } |