2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 13:11:22 +00:00

Fix windows

This commit is contained in:
Phillip Stephens 2021-06-02 11:32:35 -07:00
parent 4cd8ff3586
commit deaf14bca6
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D

View File

@ -125,7 +125,7 @@ kabufuda::SystemString CMemoryCardSys::_CreateDolphinCard(kabufuda::ECardSlot sl
}
hecl::SystemString tmpPath = path.substr(0, path.find_last_of(_SYS_STR("/")));
hecl::RecursiveMakeDir(tmpPath.c_str());
const auto fp = hecl::FopenUnique(path.c_str(), "wb");
const auto fp = hecl::FopenUnique(path.c_str(), _SYS_STR("wb"));
if (fp) {
return path;
}