diff --git a/source/game.cpp b/source/game.cpp index e2f568a..6089d40 100644 --- a/source/game.cpp +++ b/source/game.cpp @@ -192,11 +192,9 @@ void Game::render() // Pasa la información de debug void Game::updateDebugInfo() { - debug->add("MIRA! MIRA ELS SLOTS!"); debug->add("X = " + std::to_string((int)player->x) + ", Y = " + std::to_string((int)player->y)); debug->add("VX = " + std::to_string(player->vx).substr(0,4) + ", VY = " + std::to_string(player->vy).substr(0,4)); debug->add("STATE = " + std::to_string(player->state)); - debug->add("VEUS??"); } // Pone la información de debug en pantalla