diff --git a/source/game.cpp b/source/game.cpp index 02a6967..be7375f 100644 --- a/source/game.cpp +++ b/source/game.cpp @@ -142,6 +142,12 @@ void Game::renderDebugInfo() // Pinta el texto int line = 0; std::string text = ""; + + text = "R - Reload player and map"; + debugText->write(1, 210, text, -1); + + text = "D - Toggle debug mode"; + debugText->write(1, 216, text, -1); text = std::to_string((int)player->sprite->getPosX()) + "," + std::to_string((int)player->sprite->getPosY()); debugText->write(0, line, text, -1);