mirror of
https://github.com/DrBeef/Raze.git
synced 2025-01-18 23:21:43 +00:00
Use correct type in range-based loop
git-svn-id: https://svn.eduke32.com/eduke32@7407 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c7f003a1a9
commit
2ec041b10e
1 changed files with 2 additions and 2 deletions
|
@ -6601,7 +6601,7 @@ MAIN_LOOP_RESTART:
|
||||||
lockclock = 0;
|
lockclock = 0;
|
||||||
|
|
||||||
myplayer.fta = 0;
|
myplayer.fta = 0;
|
||||||
for (int & q : user_quote_time)
|
for (int32_t & q : user_quote_time)
|
||||||
q = 0;
|
q = 0;
|
||||||
|
|
||||||
Menu_Change(MENU_MAIN);
|
Menu_Change(MENU_MAIN);
|
||||||
|
@ -6861,7 +6861,7 @@ int G_DoMoveThings(void)
|
||||||
if (g_RTSPlaying > 0)
|
if (g_RTSPlaying > 0)
|
||||||
g_RTSPlaying--;
|
g_RTSPlaying--;
|
||||||
|
|
||||||
for (int & i : user_quote_time)
|
for (int32_t & i : user_quote_time)
|
||||||
{
|
{
|
||||||
if (i)
|
if (i)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue