Open files with Platform::OpenFile when exporting DSi NAND files

This commit is contained in:
Rafael Caetano 2024-01-23 22:47:13 +00:00
parent 2de14f7cb5
commit 3960f4699b

View File

@ -715,7 +715,7 @@ bool ExportFile(const char* path, const char* out)
u32 len = f_size(&file);
fout = fopen(out, "wb");
fout = Platform::OpenFile(out, "wb");
if (!fout)
{
f_close(&file);