mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 15:21:48 +00:00
Revise part of r6385 for clarity.
git-svn-id: https://svn.eduke32.com/eduke32@6391 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
9eaf935757
commit
b01b25bc93
1 changed files with 6 additions and 7 deletions
|
@ -4462,26 +4462,25 @@ finish_qsprintf:
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
int const numBytes = Gv_GetArrayAllocSize(arrayNum);
|
|
||||||
|
|
||||||
switch (aGameArrays[arrayNum].flags & GAMEARRAY_TYPE_MASK)
|
switch (aGameArrays[arrayNum].flags & GAMEARRAY_TYPE_MASK)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
#ifdef BITNESS64
|
#ifdef BITNESS64
|
||||||
{
|
{
|
||||||
int const numElements = aGameArrays[arrayNum].size;
|
size_t const numElements = aGameArrays[arrayNum].size;
|
||||||
int32_t *const pArray = (int32_t *)Xmalloc(numBytes >> 1);
|
size_t const numDiskBytes = numElements * sizeof(int32_t);
|
||||||
|
int32_t *const pArray = (int32_t *)Xmalloc(numDiskBytes);
|
||||||
|
|
||||||
for (bssize_t k = 0; k < numElements; k++)
|
for (size_t k = 0; k < numElements; ++k)
|
||||||
pArray[k] = Gv_GetArrayValue(arrayNum, k);
|
pArray[k] = Gv_GetArrayValue(arrayNum, k);
|
||||||
|
|
||||||
Bfwrite(pArray, 1, numBytes >> 1, fil);
|
Bfwrite(pArray, 1, numDiskBytes, fil);
|
||||||
Bfree(pArray);
|
Bfree(pArray);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
Bfwrite(aGameArrays[arrayNum].pValues, 1, numBytes, fil);
|
Bfwrite(aGameArrays[arrayNum].pValues, 1, Gv_GetArrayAllocSize(arrayNum), fil);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue