mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-18 22:51:50 +00:00
- silence some warnings.
This commit is contained in:
parent
e69e1b9908
commit
13306e900d
2 changed files with 2 additions and 2 deletions
|
@ -405,7 +405,7 @@ int32_t try_facespr_intersect(uspriteptr_t const spr, vec3_t const in,
|
|||
#define INITIALUPDATESECTORDIST 256
|
||||
void updatesector(int const x, int const y, int * const sectnum) ATTRIBUTE((nonnull(3)));
|
||||
[[deprecated]]
|
||||
inline void updatesector(int32_t const x, int32_t const y, int16_t * const sectnum) ATTRIBUTE((nonnull(3)))
|
||||
inline void updatesector(int32_t const x, int32_t const y, int16_t * const sectnum)
|
||||
{
|
||||
int snum = *sectnum;
|
||||
updatesector(x, y, &snum);
|
||||
|
|
|
@ -132,7 +132,7 @@ public:
|
|||
|
||||
RenderCommand()
|
||||
{
|
||||
memset(this, 0, sizeof(*this));
|
||||
memset((void*)this, 0, sizeof(*this));
|
||||
}
|
||||
|
||||
// If these fields match, two draw commands can be batched.
|
||||
|
|
Loading…
Reference in a new issue