diff options
author | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-08 09:03:30 +0100 |
---|---|---|
committer | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-08 09:03:30 +0100 |
commit | 93aa94921e027e05d7cb9908305af225c64b1ff2 (patch) | |
tree | 8beacc3b049a7150aa2cb5af501b158d11158a9e /game/coins/CoinPoolSubScene.cpp | |
parent | 1a61140ab5be8ede0aa19644cd29fb6770261f91 (diff) |
Make format
Diffstat (limited to 'game/coins/CoinPoolSubScene.cpp')
-rw-r--r-- | game/coins/CoinPoolSubScene.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/coins/CoinPoolSubScene.cpp b/game/coins/CoinPoolSubScene.cpp index 05f6bfc..f8b5b70 100644 --- a/game/coins/CoinPoolSubScene.cpp +++ b/game/coins/CoinPoolSubScene.cpp @@ -7,7 +7,7 @@ using namespace std; void CoinPoolSubScene::create_coins(crepe::Scene & scn) { int amount = 0; CoinSubScene coin; - while(amount < this->MAXIMUM_AMOUNT){ - amount = coin.create(scn,amount); + while (amount < this->MAXIMUM_AMOUNT) { + amount = coin.create(scn, amount); } } |