mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-13 13:21:31 +00:00
Fix mixed declarations & code
This commit is contained in:
parent
73a35d3280
commit
c72f959d5c
1 changed files with 7 additions and 4 deletions
|
@ -162,10 +162,13 @@ static const char *CopyString(huddrawlist_h list, const char* str)
|
||||||
else list->strbuf_capacity *= 2;
|
else list->strbuf_capacity *= 2;
|
||||||
list->strbuf = (char*) Z_ReallocAlign(list->strbuf, sizeof(char) * list->strbuf_capacity, PU_STATIC, NULL, 8);
|
list->strbuf = (char*) Z_ReallocAlign(list->strbuf, sizeof(char) * list->strbuf_capacity, PU_STATIC, NULL, 8);
|
||||||
}
|
}
|
||||||
const char *result = (const char *) &list->strbuf[list->strbuf_len];
|
|
||||||
strncpy(&list->strbuf[list->strbuf_len], str, lenstr + 1);
|
{
|
||||||
list->strbuf_len += lenstr + 1;
|
const char *result = (const char *) &list->strbuf[list->strbuf_len];
|
||||||
return result;
|
strncpy(&list->strbuf[list->strbuf_len], str, lenstr + 1);
|
||||||
|
list->strbuf_len += lenstr + 1;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void LUA_HUD_AddDraw(
|
void LUA_HUD_AddDraw(
|
||||||
|
|
Loading…
Reference in a new issue