Replace some calls to fopen with File::OpenCFile (utf8).

This commit is contained in:
Henrik Rydgard
2016-01-17 15:59:20 +01:00
parent 27c71aa340
commit 3ba911bf07
8 changed files with 12 additions and 14 deletions
+1 -1
View File
@@ -794,7 +794,7 @@ static void __SaveDecryptedEbootToStorageMedia(const u8 *decryptedEbootDataPtr,
}
}
FILE *decryptedEbootFile = fopen(fullPath.c_str(), "wb");
FILE *decryptedEbootFile = File::OpenCFile(fullPath, "wb");
if (!decryptedEbootFile) {
ERROR_LOG(SCEMODULE, "Unable to write decrypted EBOOT.");
return;