mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 00:40:56 +00:00
Fix C++ build. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4737 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b3f55d014e
commit
e5923955ef
2 changed files with 4 additions and 4 deletions
|
@ -276,7 +276,7 @@ void OSD_WriteCvars(FILE *fp);
|
||||||
|
|
||||||
static inline void OSD_SetHistory(int32_t histIdx, const char *src)
|
static inline void OSD_SetHistory(int32_t histIdx, const char *src)
|
||||||
{
|
{
|
||||||
osd->history.buf[histIdx] = Xmalloc(OSDEDITLENGTH);
|
osd->history.buf[histIdx] = (char *)Xmalloc(OSDEDITLENGTH);
|
||||||
Bstrncpyz(osd->history.buf[histIdx], src, OSDEDITLENGTH);
|
Bstrncpyz(osd->history.buf[histIdx], src, OSDEDITLENGTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -510,7 +510,7 @@ number from 0 to 2^_B_^--1.
|
||||||
|
|
||||||
4. If the truncated value is outside the range of representable values for the
|
4. If the truncated value is outside the range of representable values for the
|
||||||
corresponding integer type of bit width _B_, the final value is obtained by
|
corresponding integer type of bit width _B_, the final value is obtained by
|
||||||
successively adding or subtracting 2^B^, until the value falls inside that
|
successively adding or subtracting 2^_B_^, until the value falls inside that
|
||||||
range.
|
range.
|
||||||
|
|
||||||
//////////
|
//////////
|
||||||
|
@ -989,8 +989,8 @@ Returns the result of the `updatesector` call.
|
||||||
[[sprite_power]] `spr^zofs`::
|
[[sprite_power]] `spr^zofs`::
|
||||||
Returns an <<vector_types,`xmath.ivec3`>> object that contains the position of
|
Returns an <<vector_types,`xmath.ivec3`>> object that contains the position of
|
||||||
this sprite, diminished by `zofs` in the z direction. Because in BUILD, z
|
this sprite, diminished by `zofs` in the z direction. Because in BUILD, z
|
||||||
coordinates increase toward the floor, the `^` can be thought of as ``raise the
|
coordinates increase toward the floor, the `^` can be thought of as the
|
||||||
sprite by `zofs` units''.
|
position of the sprite ``raised by `zofs` units''.
|
||||||
|
|
||||||
===== `sprite` static data
|
===== `sprite` static data
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue