1
0
Fork 0

(svn r7977) [0.5] - Fix: Segfault in newgrf loading code. grfmsg changed to DEBUG

celestar 2007-01-08 13:57:40 +00:00
parent 20f4c7f489
commit 297707d2ab
1 changed files with 1 additions and 1 deletions

View File

@ -2418,7 +2418,7 @@ static void SkipIf(byte *buf, int len)
const GRFConfig *c = GetGRFConfig(cond_val); const GRFConfig *c = GetGRFConfig(cond_val);
if (condtype != 10 && c == NULL) { if (condtype != 10 && c == NULL) {
grfmsg(7, "GRFID 0x%08X unknown, skipping test", BSWAP32(cond_val)); DEBUG(grf, 7) ("GRFID 0x%08X unknown, skipping test", BSWAP32(cond_val));
return; return;
} }