Skip to content

Commit

Permalink
Update src/sdltiles.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
vetall812 and github-actions[bot] authored Sep 4, 2024
1 parent f7a67b2 commit a652fde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sdltiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3740,9 +3740,9 @@ void catacurses::init_interface()
float GrayB = static_cast<float>( GRAY.b ) / 255.0f;

SDL_Color DGRAY = windowsPalette[8];
float DGrayR = static_cast<float>(DGRAY.r) / 255.0f;
float DGrayG = static_cast<float>(DGRAY.g) / 255.0f;
float DGrayB = static_cast<float>(DGRAY.b) / 255.0f;
float DGrayR = static_cast<float>( DGRAY.r ) / 255.0f;
float DGrayG = static_cast<float>( DGRAY.g ) / 255.0f;
float DGrayB = static_cast<float>( DGRAY.b ) / 255.0f;

SDL_Color WHITE = windowsPalette[15];
float WhiteR = static_cast<float>(WHITE.r) / 255.0f;
Expand Down

0 comments on commit a652fde

Please sign in to comment.