- Fixed: Cocoa IWAD picker was not updated. Also changed instances of the deprecated stringWithCString to stringWithUTF8String.

- Fixed: Mac OS X should be case insensitive like Windows.

SVN r3005 (trunk)
This commit is contained in:
Braden Obrzut 2010-11-10 23:39:34 +00:00
commit a00730c160
2 changed files with 9 additions and 9 deletions

View file

@ -227,7 +227,7 @@ void FIWadManager::ParseIWadInfo(const char *fn, const char *data, int datasize)
{
sc.MustGetString();
FString wadname = sc.String;
#ifdef _WIN32
#if defined(_WIN32) || defined(__APPLE__) // Turns out Mac OS X is case insensitive.
mIWadNames.Push(wadname);
#else
// check for lowercase, uppercased first letter and full uppercase on Linux etc.