2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 19:04:56 +00:00

Fix windows

This commit is contained in:
2021-06-02 11:32:35 -07:00
parent 4cd8ff3586
commit deaf14bca6

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::SystemString tmpPath = path.substr(0, path.find_last_of(_SYS_STR("/")));
hecl::RecursiveMakeDir(tmpPath.c_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) { if (fp) {
return path; return path;
} }