Skip to content

Commit

Permalink
Fixed wrong default values of colors of highlighting and alert
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeki The Monkey committed Jul 4, 2021
1 parent c18879f commit 39c26fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ std::string Settings::BackgroundTexturePath("Default");
sf::Color Settings::BackgroundColor(sf::Color(170,170,170));

// [Edit mode]
sf::Color Settings::HighlightedKeyColor(sf::Color(255,180,0));
sf::Color Settings::AlertColor(sf::Color(210,30,210));
sf::Color Settings::HighlightedKeyColor(sf::Color(210,30,210));
sf::Color Settings::AlertColor(sf::Color(255,180,0));

// Non config parameters
bool Settings::IsChangeable(false);
Expand Down

0 comments on commit 39c26fb

Please sign in to comment.