mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 17:31:08 +00:00
Fix a missed byteswap when loading qfo files.
This commit is contained in:
parent
2457837b37
commit
ea02f3cd44
1 changed files with 1 additions and 0 deletions
|
@ -555,6 +555,7 @@ qfo_read (QFile *file)
|
|||
qfo->funcs[i].code = LittleLong (qfo->funcs[i].code);
|
||||
qfo->funcs[i].def = LittleLong (qfo->funcs[i].def);
|
||||
qfo->funcs[i].locals_space = LittleLong (qfo->funcs[i].locals_space);
|
||||
qfo->funcs[i].line_info = LittleLong (qfo->funcs[i].line_info);
|
||||
qfo->funcs[i].relocs = LittleLong (qfo->funcs[i].relocs);
|
||||
qfo->funcs[i].num_relocs = LittleLong (qfo->funcs[i].num_relocs);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue