mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Enable Loading backup from drive for GC for windows
takes about 60-90 seconds on loading about the same speed ingame as running from the hard drive changed to the correct flag for CreateFile git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2352 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -101,9 +101,10 @@ void CFrame::CreateMenu()
|
||||
m_pMenuItemOpen = fileMenu->Append(wxID_OPEN, _T("&Open...\tCtrl+O"));
|
||||
fileMenu->Append(wxID_REFRESH, _T("&Refresh"));
|
||||
fileMenu->Append(IDM_BROWSE, _T("&Browse for ISOs..."));
|
||||
// change to test drive loading, currently very slow on win32, not tested on linux/os x
|
||||
// not tested on linux/os x
|
||||
// works ok on a virtual drive with GC Games, Wii games do not load
|
||||
#if 0
|
||||
// backups take about 60-90 seconds to load from real cd drive
|
||||
#ifdef _WIN32
|
||||
wxMenu *externalDrive = new wxMenu;
|
||||
fileMenu->AppendSubMenu(externalDrive, _T("&Load From Drive"));
|
||||
GetAllRemovableDrives(&drives);
|
||||
|
Reference in New Issue
Block a user