diff options
author | peter1138 <peter1138@openttd.org> | 2007-06-13 06:42:43 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-06-13 06:42:43 +0000 |
commit | f7e4d4d6e751b0e0e5e7879ab0f3ecb544cdb108 (patch) | |
tree | 90e39870ac7b2f4566ec1e157992cf129f826f72 | |
parent | 30863358f9f2bd0951fe46103e0fb9fa6a2c97d8 (diff) | |
download | openttd-f7e4d4d6e751b0e0e5e7879ab0f3ecb544cdb108.tar.xz |
(svn r10128) -Fix (r4811): missing printf parameters in newgrf debug message
-rw-r--r-- | src/newgrf.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp index d16b3cbb6..f5ead3b50 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -2101,6 +2101,7 @@ static const SpriteGroup* CreateGroupFromGroupID(byte feature, byte setid, byte if (feature != _cur_grffile->spriteset_feature) { grfmsg(1, "CreateGroupFromGroupID(0x%02X:0x%02X): Sprite set feature 0x%02X does not match action feature 0x%02X, skipping", + setid, type, _cur_grffile->spriteset_feature, feature); return NULL; } |