Slight improvements to debugger, still wonky

This commit is contained in:
irisz64
2025-12-15 15:25:45 +01:00
parent 4695f93091
commit 19b9d56ba7
8 changed files with 49 additions and 27 deletions

View File

@@ -118,7 +118,7 @@ void PIF::LoadEeprom(const SaveType saveType, const std::string &path) {
eeprom = mio::make_mmap_sink(eepromPath, 0, mio::map_entire_file, error);
if (error) {
panic("Could not open {}", eepromPath);
panic("Could not open {}. Reason {}", eepromPath, error.message());
}
}
}