mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-18 21:38:25 +00:00
refactor: expand AUTO_VAR macro
This commit is contained in:
@@ -1909,7 +1909,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