1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:27:46 +00:00

FlappyBug: Standardize on "high score" rather than "highscore"

"High score" should be two words, and this matches other games in the
system.
This commit is contained in:
Timothy Flynn 2021-06-22 10:54:42 -04:00 committed by Andreas Kling
parent 1a2053781f
commit 675b8ba995
2 changed files with 5 additions and 5 deletions

View file

@ -143,7 +143,7 @@ private:
Obstacle m_obstacle;
Cloud m_cloud;
bool m_active;
Optional<float> m_highscore {};
Optional<float> m_high_score {};
float m_last_score {};
float m_difficulty {};
float m_restart_cooldown {};