mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00: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:
parent
cfd2a12857
commit
3d0fcfaaac
3 changed files with 11 additions and 4 deletions
|
@ -28,7 +28,8 @@ namespace DiscIO
|
|||
path[2] = 0;
|
||||
sprintf(path, "\\\\.\\%s", drive);
|
||||
|
||||
hDisc = CreateFile(path, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
|
||||
hDisc = CreateFile(path, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
|
||||
NULL, OPEN_EXISTING, FILE_FLAG_RANDOM_ACCESS, NULL);
|
||||
if (hDisc == INVALID_HANDLE_VALUE)
|
||||
{
|
||||
PanicAlert("Load from DVD backup failed");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue