mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-15 06:58:37 +02:00
fix loading wads on both windows (FileMonitor.cpp) and linux/mac (std::transform toupper not sure why it was there :/)
fixes issue 1388. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4253 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -80,7 +80,7 @@ void ReadGC(std::string FileName)
|
||||
GCFiles.clear();
|
||||
OpenISO = DiscIO::CreateVolumeFromFilename(FileName);
|
||||
if (!OpenISO) return;
|
||||
if (!DiscIO::IsVolumeWiiDisc(OpenISO))
|
||||
if (!DiscIO::IsVolumeWiiDisc(OpenISO) && !DiscIO::IsVolumeWadFile(OpenISO))
|
||||
{
|
||||
pFileSystem = DiscIO::CreateFileSystem(OpenISO);
|
||||
pFileSystem->GetFileList(GCFiles);
|
||||
|
Reference in New Issue
Block a user