mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- merge fixes.
Why does that freaking merger always delete the namespace markers...?
This commit is contained in:
parent
2e085b559f
commit
4571ba74c2
4 changed files with 5 additions and 3 deletions
|
@ -528,3 +528,4 @@ void gibPrecache(void)
|
|||
}
|
||||
}
|
||||
}
|
||||
END_BLD_NS
|
||||
|
|
|
@ -75,4 +75,4 @@ void GibSprite(spritetype *pSprite, GIBTYPE nGibType, CGibPosition *pPos, CGibVe
|
|||
//void GibFX(int nWall, GIBFX * pGFX, int a3, int a4, int a5, int a6, CGibVelocity * pVel);
|
||||
void GibWall(int nWall, GIBTYPE nGibType, CGibVelocity *pVel);
|
||||
void gibPrecache(void);
|
||||
|
||||
END_BLD_NS
|
||||
|
|
|
@ -155,4 +155,5 @@ void QAV::Precache(void)
|
|||
tilePrecacheTile(frames[i].tiles[j].picnum, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
END_BLD_NS
|
||||
|
|
|
@ -119,7 +119,7 @@ void scrLoadPLUs(void)
|
|||
for (int i = kUserPLUStart; i < MAXPALOOKUPS; i++) {
|
||||
DICTNODE* pPlu = gSysRes.Lookup(i, "PLU");
|
||||
if (!pPlu) continue;
|
||||
else if (pPlu->size / 256 != 64) { consoleSysMsg("Incorrect filesize of PLU#%d", i); }
|
||||
else if (pPlu->Size() / 256 != 64) { consoleSysMsg("Incorrect filesize of PLU#%d", i); }
|
||||
else palookup[i] = (char*)gSysRes.Lock(pPlu);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue