mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Silence a gcc48 warning due to some "creative" array usage
To my understanding this code and the old code do exactly the same, this one is just more readable. Therefor this change should be a no-op.
This commit is contained in:
parent
d394102712
commit
1bee58840d
1 changed files with 2 additions and 1 deletions
|
@ -454,9 +454,10 @@ Mod_LoadTexinfo(lump_t *l)
|
|||
|
||||
for (i = 0; i < count; i++, in++, out++)
|
||||
{
|
||||
for (j = 0; j < 8; j++)
|
||||
for (j = 0; j < 4; j++)
|
||||
{
|
||||
out->vecs[0][j] = LittleFloat(in->vecs[0][j]);
|
||||
out->vecs[1][j] = LittleFloat(in->vecs[1][j]);
|
||||
}
|
||||
|
||||
out->flags = LittleLong(in->flags);
|
||||
|
|
Loading…
Reference in a new issue