Remove AUTO_VAR macro and _toString function (#592)
This commit is contained in:
@@ -42,7 +42,7 @@ void ConsoleSoundEngine::tick()
|
||||
return;
|
||||
}
|
||||
|
||||
for(AUTO_VAR(it,scheduledSounds.begin()); it != scheduledSounds.end();)
|
||||
for (auto it = scheduledSounds.begin(); it != scheduledSounds.end();)
|
||||
{
|
||||
SoundEngine::ScheduledSound *next = *it;
|
||||
next->delay--;
|
||||
|
||||
Reference in New Issue
Block a user