diff options
author | peter1138 <peter1138@openttd.org> | 2007-04-16 08:31:00 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-04-16 08:31:00 +0000 |
commit | fe368130dcf3d75c981dba6d4df178888ab18850 (patch) | |
tree | 091d9892f28674343644d3302074dcfe3626a813 | |
parent | 30c1d7472d2744d714d69082279d93134d1c6cae (diff) | |
download | openttd-fe368130dcf3d75c981dba6d4df178888ab18850.tar.xz |
(svn r9646) -Fix (r9645): incorrect count in error message for airport graphics
-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 d22c2cae9..ae6a541e6 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -2883,7 +2883,7 @@ static void GraphicsNew(byte *buf, int len) case 0x10: // New airport sprites if (num != 15) { - grfmsg(1, "GraphicsNew: Airport graphics sprite count must be 8, skipping"); + grfmsg(1, "GraphicsNew: Airport graphics sprite count must be 15, skipping"); return; } replace = SPR_AIRPORTX_BASE; |