From 5dc46dda5a94b446897c1c87100f07dc1fdd3a77 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sat, 26 Jul 2025 08:22:38 +0200 Subject: [PATCH] fix: llevar una constant del modo debug --- source/player.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/player.h b/source/player.h index 18b44fb..be3bf2b 100644 --- a/source/player.h +++ b/source/player.h @@ -171,7 +171,7 @@ class Player { static constexpr float BASE_SPEED = 1.5F; // Velocidad base del jugador static constexpr int COOLING_DURATION = 50; static constexpr int COOLING_COMPLETE = 0; - static constexpr int WAITING_COUNTER = 300; + static constexpr int WAITING_COUNTER = 1000; // --- Objetos y punteros --- std::unique_ptr player_sprite_; // Sprite para dibujar el jugador