Filenames are case sensitive in Linux.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2613 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2010-02-20 04:30:42 +00:00
parent 19b65d52c1
commit b6b6a1d881
1 changed files with 2 additions and 2 deletions

View File

@ -479,11 +479,11 @@ void loadElfFile(const wxString& filename)
DevCon.WriteLn("Loading from a file (or non-cd image).");
#ifdef USE_HOSTFS
parameters = filename;
filename = wxT("PCSX2HOSTFS_LDR.ELF");
filename = wxT("pcsx2hostfs_ldr.elf");
#endif
elfptr = new ElfObject(filename, Path::GetFileSize(filename));
#ifdef USE_HOSTFS
filename = wxT("host:PCSX2HOSTFS_LDR.ELF");
filename = wxT("host:pcsx2hostfs_ldr.elf");
#endif
}