From f54a88cfd527b6cf0a4bc5238d253bb149185855 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 15:50:47 -0400 Subject: [PATCH] remove savestate from assets --- .gitignore | 3 ++- src/gamecore.rs | 2 +- src/main.rs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4e1d2b0..2fb3a89 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ Cargo.lock /target -.project \ No newline at end of file +.project +savestate.json \ No newline at end of file diff --git a/src/gamecore.rs b/src/gamecore.rs index 1f56a4f..3013213 100644 --- a/src/gamecore.rs +++ b/src/gamecore.rs @@ -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"); } diff --git a/src/main.rs b/src/main.rs index 2310fd4..c4822d3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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);