summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index eca778dca..8c8b6e329 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -320,7 +320,9 @@ StringID MapGRFStringID(uint32 grfid, StringID str)
if (str == STR_NULL) return STR_EMPTY;
- return str;
+ DEBUG(grf, 0, "Unknown StringID 0x%04X remapped to STR_EMPTY. Please open a Feature Request if you need it", str);
+
+ return STR_EMPTY;
}
static inline uint8 MapDOSColour(uint8 colour)