Differences From Artifact [8879a01acd]:
- File src/sound.m — part of check-in [b787ad5a04] at 2025-03-22 23:10:13 on branch trunk — Clean up DynamicEntity (user: js, size: 4197) [annotate] [blame] [check-ins using]
To Artifact [4ad5c2248e]:
- File
src/sound.m
— part of check-in
[6b85eefc85]
at
2025-03-23 02:47:40
on branch trunk
— Remove loop[ijkl]
They confused clang-format a lot. (user: js, size: 4228) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
142 143 144 145 146 147 148 | } void updatevol() { if (nosound) return; | < | > > | | | | > | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | } void updatevol() { if (nosound) return; for (int i = 0; i < MAXCHAN; i++) { if (soundlocs[i].inuse) { if (Mix_Playing(i)) updatechanvol(i, &soundlocs[i].loc); else soundlocs[i].inuse = false; } } } void playsoundc(int n) { addmsg(0, 2, SV_SOUND, n); |
︙ | ︙ |