Fix a bug with saving files on new systems

This commit is contained in:
Evan Pratten 2022-03-17 21:47:51 -04:00
parent 6a6f268a6c
commit 17399994ca
2 changed files with 18 additions and 0 deletions

View File

@ -67,6 +67,15 @@ impl GameSaveState {
let save_location = Self::get_save_location();
log::debug!("Saving game savestate to: {}", save_location.display());
// Create the directory if it doesn't exist.
if !save_location.parent().unwrap().is_dir() {
log::debug!(
"Creating directory: {}",
save_location.parent().unwrap().display()
);
std::fs::create_dir_all(save_location.parent().unwrap()).unwrap();
}
// Write the savestate to disk.
std::fs::write(save_location, serde_json::to_string(self).unwrap()).unwrap();

View File

@ -68,6 +68,15 @@ impl PersistentGameSettings {
let save_location = Self::get_save_location();
log::debug!("Saving game settings to: {}", save_location.display());
// Create the directory if it doesn't exist.
if !save_location.parent().unwrap().is_dir() {
log::debug!(
"Creating directory: {}",
save_location.parent().unwrap().display()
);
std::fs::create_dir_all(save_location.parent().unwrap()).unwrap();
}
// Write the settings to disk.
std::fs::write(save_location, serde_json::to_string(self).unwrap()).unwrap();