mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix the print's file extension
This commit is contained in:
parent
daab86f461
commit
6399cd57e1
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,6 @@ void K_InitBrightmaps(void)
|
||||||
|
|
||||||
for (wadNum = 0; wadNum < numwadfiles; wadNum++)
|
for (wadNum = 0; wadNum < numwadfiles; wadNum++)
|
||||||
{
|
{
|
||||||
lumpinfo_t *lump_p = wadfiles[wadNum]->lumpinfo;
|
|
||||||
UINT16 lumpNum;
|
UINT16 lumpNum;
|
||||||
|
|
||||||
// Find BRIGHT lump in the WAD
|
// Find BRIGHT lump in the WAD
|
||||||
|
|
@ -196,6 +195,7 @@ void K_InitBrightmaps(void)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
lumpinfo_t *lump_p = &wadfiles[wadNum]->lumpinfo[lumpNum];
|
||||||
size_t size = W_LumpLengthPwad(wadNum, lumpNum);
|
size_t size = W_LumpLengthPwad(wadNum, lumpNum);
|
||||||
|
|
||||||
size_t nameLength = strlen(wadfiles[wadNum]->filename) + 1 + strlen(lump_p->fullname); // length of file name, '|', and lump name
|
size_t nameLength = strlen(wadfiles[wadNum]->filename) + 1 + strlen(lump_p->fullname); // length of file name, '|', and lump name
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue