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:
Yamagi Burmeister 2013-04-07 13:43:17 +02:00
parent d394102712
commit 1bee58840d
1 changed files with 2 additions and 1 deletions

View File

@ -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);