mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-23 08:23:35 +00:00
Don't freak out if the file already exists... overwrite it.
This commit is contained in:
parent
1aa62003b9
commit
8054740900
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public:
|
|||
case eFileMode_Write:
|
||||
case eFileMode_WriteBinary:
|
||||
dwDesiredAccess = GENERIC_WRITE;
|
||||
dwOpenAction = CREATE_NEW;
|
||||
dwOpenAction = CREATE_ALWAYS;
|
||||
break;
|
||||
|
||||
case eFileMode_WriteAppend:
|
||||
|
|
Loading…
Reference in a new issue