Fix a bug with saving files on new systems
This commit is contained in:
parent
6a6f268a6c
commit
17399994ca
@ -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();
|
||||
|
||||
|
@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user