Merge branch 'master' into ewpratten/rendering_basics

This commit is contained in:
Evan Pratten 2022-03-17 21:49:36 -04:00
commit 21992fc00f
2 changed files with 18 additions and 0 deletions

View File

@ -67,6 +67,15 @@ impl GameSaveState {
let save_location = Self::get_save_location(); let save_location = Self::get_save_location();
log::debug!("Saving game savestate to: {}", save_location.display()); 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. // Write the savestate to disk.
std::fs::write(save_location, serde_json::to_string(self).unwrap()).unwrap(); std::fs::write(save_location, serde_json::to_string(self).unwrap()).unwrap();

View File

@ -69,6 +69,15 @@ impl PersistentGameSettings {
let save_location = Self::get_save_location(); let save_location = Self::get_save_location();
log::debug!("Saving game settings to: {}", save_location.display()); 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. // Write the settings to disk.
std::fs::write(save_location, serde_json::to_string(self).unwrap()).unwrap(); std::fs::write(save_location, serde_json::to_string(self).unwrap()).unwrap();