mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Fix an incorrect parameter value passed to FS_Read when reading the DCL file
This commit is contained in:
parent
792b676c11
commit
d04a32920a
1 changed files with 1 additions and 1 deletions
|
@ -559,7 +559,7 @@ void R_LevelMarksLoad(const char *szBSPName)
|
|||
for (i = tr.world->numDecisionNodes; i < tr.world->numnodes; i++) {
|
||||
pLeaf = &tr.world->nodes[i];
|
||||
|
||||
ri.FS_Read(&pLeaf->iNumMarkFragment, sizeof(int), h_low);
|
||||
ri.FS_Read(&pLeaf->iNumMarkFragment, sizeof(int), hFile);
|
||||
pLeaf->iNumMarkFragment = LittleLong(pLeaf->iNumMarkFragment);
|
||||
|
||||
if (pLeaf->iNumMarkFragment) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue