Estandarizados los colores en hexadecimal

This commit is contained in:
2024-09-27 16:52:26 +02:00
parent 5ca4ee0bb8
commit c1bf0b8aed
2 changed files with 6 additions and 6 deletions

View File

@@ -402,6 +402,6 @@ void Scoreboard::createPanelTextures()
void Scoreboard::renderSeparator()
{
// Dibuja la linea que separa el marcador de la zona de juego
SDL_SetRenderDrawColor(renderer, separator.r, separator.g, separator.b, 255);
SDL_SetRenderDrawColor(renderer, separatorColor.r, separatorColor.g, separatorColor.b, 255);
SDL_RenderDrawLine(renderer, 0, 0, rect.w, 0);
}