diff --git a/compiled-games/BelowTheSurface/BelowTheSurface-assets.tar.gz b/compiled-games/BelowTheSurface/BelowTheSurface-assets.tar.gz deleted file mode 100644 index c6e18a7a..00000000 Binary files a/compiled-games/BelowTheSurface/BelowTheSurface-assets.tar.gz and /dev/null differ diff --git a/compiled-games/BelowTheSurface/BelowTheSurface-linux-arm.tar.gz b/compiled-games/BelowTheSurface/BelowTheSurface-linux-arm.tar.gz deleted file mode 100644 index f704a2bc..00000000 Binary files a/compiled-games/BelowTheSurface/BelowTheSurface-linux-arm.tar.gz and /dev/null differ diff --git a/compiled-games/BelowTheSurface/BelowTheSurface-linux-x86.tar.gz b/compiled-games/BelowTheSurface/BelowTheSurface-linux-x86.tar.gz deleted file mode 100644 index c9574e56..00000000 Binary files a/compiled-games/BelowTheSurface/BelowTheSurface-linux-x86.tar.gz and /dev/null differ diff --git a/compiled-games/BelowTheSurface/BelowTheSurface-win-x86.tar.gz b/compiled-games/BelowTheSurface/BelowTheSurface-win-x86.tar.gz deleted file mode 100644 index 164810ca..00000000 Binary files a/compiled-games/BelowTheSurface/BelowTheSurface-win-x86.tar.gz and /dev/null differ diff --git a/games/BelowTheSurface/password.h b/games/BelowTheSurface/password.h index 8c71cc14..d0cb9fe0 100644 --- a/games/BelowTheSurface/password.h +++ b/games/BelowTheSurface/password.h @@ -214,7 +214,7 @@ class Password } }; - // changed keys for Arcade Machine orgianl key in comments + // changed keys for Arcade Machine original key in comments string input() { string password = ""; @@ -258,7 +258,8 @@ class Password selection -= 6; error = false; - if (selection <= 0) + // A is 0 + if (selection < 0) { if (selection < -4) selection = selection + 30; diff --git a/games/BelowTheSurface/screen.h b/games/BelowTheSurface/screen.h index c87a2cbf..8f49edc1 100644 --- a/games/BelowTheSurface/screen.h +++ b/games/BelowTheSurface/screen.h @@ -1191,8 +1191,6 @@ void PasswordScreen::update() { string password = password_screen->update(); - write_line(password); - if(password == "EXITEXITEXIT") { play_sound_effect("Select"); @@ -1249,7 +1247,6 @@ void PasswordScreen::update() //if password is full and has no underscores, shows error message else if(password.length() == 5 && password.find('_') == std::string::npos) { - password_screen->incorrect_password(); }