diff --git a/Source/w_wad.c b/Source/w_wad.c index df1a82a6..2dc04d60 100644 --- a/Source/w_wad.c +++ b/Source/w_wad.c @@ -67,7 +67,11 @@ void ExtractFileBase(const char *path, char *dest) while (*src && *src != '.') if (++length == 9) - I_Error ("Filename base of %s >8 chars",path); + { + // [FG] remove length check + printf ("Filename base of %s >8 chars",path); + break; + } else *dest++ = toupper(*src++); }