remove savestate from assets
This commit is contained in:
parent
9bd4cb4122
commit
f54a88cfd5
3
.gitignore
vendored
3
.gitignore
vendored
@ -15,4 +15,5 @@ Cargo.lock
|
|||||||
|
|
||||||
/target
|
/target
|
||||||
|
|
||||||
.project
|
.project
|
||||||
|
savestate.json
|
@ -88,7 +88,7 @@ impl GameProgress {
|
|||||||
// self.fastest_time = self.fastest_time.min(new_progress.fastest_time);
|
// self.fastest_time = self.fastest_time.min(new_progress.fastest_time);
|
||||||
|
|
||||||
// Write to file
|
// Write to file
|
||||||
let result = self.to_file("./assets/savestate.json".to_string());
|
let result = self.to_file("./savestate.json".to_string());
|
||||||
if result.is_err() {
|
if result.is_err() {
|
||||||
println!("Could not save game state. Holding in RAM");
|
println!("Could not save game state. Holding in RAM");
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ fn main() {
|
|||||||
.expect("Failed to load main world JSON");
|
.expect("Failed to load main world JSON");
|
||||||
|
|
||||||
// Load the game progress
|
// Load the game progress
|
||||||
let game_progress = GameProgress::try_from_file("./assets/savestate.json".to_string());
|
let game_progress = GameProgress::try_from_file("./savestate.json".to_string());
|
||||||
|
|
||||||
// Set up the game's core state
|
// Set up the game's core state
|
||||||
let mut game_core = GameCore::new(&mut raylib, &raylib_thread, world, game_progress);
|
let mut game_core = GameCore::new(&mut raylib, &raylib_thread, world, game_progress);
|
||||||
|
Reference in New Issue
Block a user