remove savestate from assets

This commit is contained in:
Evan Pratten 2021-04-25 15:50:47 -04:00
parent 9bd4cb4122
commit f54a88cfd5
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -16,3 +16,4 @@ Cargo.lock
/target
.project
savestate.json

View File

@ -88,7 +88,7 @@ impl GameProgress {
// self.fastest_time = self.fastest_time.min(new_progress.fastest_time);
// 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() {
println!("Could not save game state. Holding in RAM");
}

View File

@ -51,7 +51,7 @@ fn main() {
.expect("Failed to load main world JSON");
// 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
let mut game_core = GameCore::new(&mut raylib, &raylib_thread, world, game_progress);