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

3
.gitignore vendored
View File

@ -15,4 +15,5 @@ Cargo.lock
/target /target
.project .project
savestate.json

View File

@ -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");
} }

View File

@ -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);