mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
Fix shift by values greater than 31 in some voxel loading code.
git-svn-id: https://svn.eduke32.com/eduke32@2165 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f39429fa96
commit
b7aacd242a
1 changed files with 4 additions and 4 deletions
|
@ -3,11 +3,11 @@
|
||||||
|
|
||||||
#include "hightile.h"
|
#include "hightile.h"
|
||||||
|
|
||||||
#ifdef __POWERPC__
|
//#ifdef __POWERPC__
|
||||||
#define SHIFTMOD32(a) ((a)&31)
|
#define SHIFTMOD32(a) ((a)&31)
|
||||||
#else
|
//#else
|
||||||
#define SHIFTMOD32(a) (a)
|
//#define SHIFTMOD32(a) (a)
|
||||||
#endif
|
//#endif
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue