mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 21:47:25 +08:00
Use const where it was inteded.
This commit is contained in:
parent
c5afb4b2a0
commit
08b1d5beb9
@ -61,7 +61,7 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
int loops = 0;
|
||||
|
||||
while (validState && requireMoreUpdateLoops && loops++ < 50)
|
||||
while (validState && requireMoreUpdateLoops && loops++ < max_catch_up_updates_per_frame)
|
||||
if (!base.UpdateSubTree())
|
||||
return false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user