modificada la lletra de la info de debug

This commit is contained in:
2025-06-02 11:46:22 +02:00
parent 16d9774519
commit 3e9716901b
3 changed files with 4 additions and 2 deletions

View File

@@ -221,10 +221,10 @@ void Screen::renderInfo()
{
// FPS
const std::string FPS_TEXT = std::to_string(fps_.lastValue) + " FPS";
debug_info_.text->writeColored(param.game.width - debug_info_.text->lenght(FPS_TEXT), 0, FPS_TEXT, ORANGE_SOFT_COLOR);
debug_info_.text->writeDX(TEXT_COLOR | TEXT_SHADOW, param.game.width - debug_info_.text->lenght(FPS_TEXT), 0, FPS_TEXT, 1, ORANGE_SOFT_COLOR, 1, ORANGE_SHADOW_COLOR);
// Resolution
debug_info_.text->writeColored(0, 0, options.video.info, ORANGE_SOFT_COLOR);
debug_info_.text->writeDX(TEXT_COLOR | TEXT_SHADOW, 0, 0, options.video.info, 1, ORANGE_SOFT_COLOR, 1, ORANGE_SHADOW_COLOR);
}
}
#endif