mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-20 14:59:12 +00:00
Fix reading/writing saves
This commit is contained in:
@@ -60,7 +60,7 @@ std::string CMemoryCardSys::_CreateDolphinCard(kabufuda::ECardSlot slot, bool do
|
||||
}
|
||||
auto path = *dolphinPath + "GC";
|
||||
int ret = mkdir(path.c_str(), 0755);
|
||||
if (ret != 0 && ret != EEXIST) {
|
||||
if (ret != 0 && errno != EEXIST) {
|
||||
return {};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user