Merge branch 'master' into ewpratten/rendering_basics
This commit is contained in:
commit
21992fc00f
@ -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();
|
||||||
|
|
||||||
|
@ -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();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user