mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 20:31:30 +00:00
Const qualifier warning
This commit is contained in:
parent
d52c77dba4
commit
8d2d926e70
1 changed files with 1 additions and 1 deletions
|
@ -6251,7 +6251,7 @@ void NetUpdate(void)
|
||||||
}
|
}
|
||||||
else if (++dedicatedidle == DEDICATEDIDLETIME)
|
else if (++dedicatedidle == DEDICATEDIDLETIME)
|
||||||
{
|
{
|
||||||
char *idlereason = "at round start";
|
const char *idlereason = "at round start";
|
||||||
if (leveltime > 3)
|
if (leveltime > 3)
|
||||||
idlereason = va("for %d seconds", dedicatedidle/TICRATE);
|
idlereason = va("for %d seconds", dedicatedidle/TICRATE);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue