diff options
| author | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-10 17:07:28 +0100 | 
|---|---|---|
| committer | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-10 17:07:28 +0100 | 
| commit | 912774706bab1e7817facb3cff12e961a89d1980 (patch) | |
| tree | 0896b12c29dccc247c69e54daaa32d8ce3097ed0 /game/enemy/EnemyPool.cpp | |
| parent | 90a33d36c34b1512270a6724564995dd8bf914a6 (diff) | |
| parent | 7aa07561a52016007ff852acefa4db68260f0f1e (diff) | |
Merge remote-tracking branch 'origin/wouter/game-improvements' into max/game2
Diffstat (limited to 'game/enemy/EnemyPool.cpp')
| -rw-r--r-- | game/enemy/EnemyPool.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/game/enemy/EnemyPool.cpp b/game/enemy/EnemyPool.cpp index a7179bf..135fc35 100644 --- a/game/enemy/EnemyPool.cpp +++ b/game/enemy/EnemyPool.cpp @@ -4,7 +4,7 @@ using namespace std;  void EnemyPool::create_enemies(crepe::Scene & scn) {  	EnemySubScene enemy;  	int amount = 0; -	while (amount < this->MAXIMUM_AMOUNT) { +	while (amount < ENEMY_POOL_MAX) {  		amount = enemy.create(scn, amount);  	}  }  |