jblanked 1 год назад
Родитель
Сommit
24bb7635b2
3 измененных файлов с 8 добавлено и 4 удалено
  1. 3 1
      README.md
  2. 3 1
      assets/README.md
  3. 2 2
      game/player.c

+ 3 - 1
README.md

@@ -72,7 +72,9 @@ An enemy attack registers if the enemy is facing you and collides with you. Howe
 - New game features
 
 **v0.5**
-- ???
+- World expansion
+- New game features
+- Custom Controller Support
 
 **v0.6**
 - ???

+ 3 - 1
assets/README.md

@@ -69,7 +69,9 @@ An enemy attack registers if the enemy is facing you and collides with you. Howe
 - New game features
 
 **v0.5**
-- ???
+- World expansion
+- New game features
+- Custom Controller Support
 
 **v0.6**
 - ???

+ 2 - 2
game/player.c

@@ -385,8 +385,8 @@ static void player_update(Entity *self, GameManager *manager, void *context)
             FURI_LOG_I(TAG, "Menu closed");
         }
 
-        // if the back button is held for 2 seconds, stop the game
-        if (game_context->elapsed_button_timer > (2 * game_context->fps))
+        // if the back button is held for 1 seconds, stop the game
+        if (game_context->elapsed_button_timer > (1 * game_context->fps))
         {
             if (!game_context->is_menu_open)
             {