Have a default path for saves

This commit is contained in:
irisz64
2025-07-29 09:34:28 +02:00
parent bf330959e8
commit e0e887ce90
2 changed files with 3 additions and 2 deletions

View File

@@ -111,7 +111,7 @@ void PIF::LoadEeprom(const SaveType saveType, const std::string &path) {
std::vector<u8> dummy{};
dummy.resize(GetSaveSize(saveType));
Util::WriteFileBinary(dummy, eepromPath);
eepromVec = Util::ReadFileBinary(eepromPath);
eepromVec = dummy;
}
if (eepromVec.size() != eepromSize) {