Corregida la paleta de color zxspectrum

This commit is contained in:
2022-09-05 17:02:17 +02:00
parent e50aa77514
commit 65eac860b1
10 changed files with 45 additions and 45 deletions

View File

@@ -44,25 +44,25 @@ ScoreBoard::ScoreBoard(SDL_Renderer *renderer, Asset *asset, int *lives, int *it
c = stringToColor("white");
color.push_back(c);
c = stringToColor("light_blue");
c = stringToColor("bright_blue");
color.push_back(c);
c = stringToColor("light_red");
c = stringToColor("bright_red");
color.push_back(c);
c = stringToColor("light_magenta");
c = stringToColor("bright_magenta");
color.push_back(c);
c = stringToColor("light_green");
c = stringToColor("bright_green");
color.push_back(c);
c = stringToColor("light_cyan");
c = stringToColor("bright_cyan");
color.push_back(c);
c = stringToColor("light_yellow");
c = stringToColor("bright_yellow");
color.push_back(c);
c = stringToColor("light_white");
c = stringToColor("bright_white");
color.push_back(c);
}