- Added Gez's BFG edition patch.

SVN r3926 (trunk)
This commit is contained in:
Randy Heit 2012-11-01 02:42:14 +00:00
commit bfae51ed2e
8 changed files with 322 additions and 1 deletions

View file

@ -305,6 +305,10 @@ FString level_info_t::LookupLevelName()
{
mysnprintf (checkstring, countof(checkstring), "%d: ", atoi(mapname + 3));
}
else if (mapname[0] == 'L' && mapname[1] == 'E' && mapname[2] == 'V' && mapname[3] == 'E' && mapname[4] == 'L')
{
mysnprintf (checkstring, countof(checkstring), "%d: ", atoi(mapname + 5));
}
thename = strstr (lookedup, checkstring);
if (thename == NULL)
{