mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-04-04 17:02:00 +00:00
Compiler warning.
This commit is contained in:
parent
3553ce8e5c
commit
c02e381f75
1 changed files with 3 additions and 1 deletions
|
@ -3812,7 +3812,9 @@ static void UI_DrawReplacementInfo(rectDef_t * rect, float scale, vec4_t color,
|
|||
{
|
||||
char buf[4096], *text = buf, *p;
|
||||
|
||||
float pt[2] = { rect->x, rect->y, };
|
||||
float pt[2];
|
||||
pt[0] = rect->x;
|
||||
pt[1] = rect->y;
|
||||
|
||||
Q_strncpyz(buf, uiInfo.replacements.Info, sizeof(buf));
|
||||
do {
|
||||
|
|
Loading…
Reference in a new issue