isSwapBuffers is savestated with a size set to 4, so it needs to be a u32 and not a BOOL
This commit is contained in:
parent
43b00fb2a0
commit
086112c4b5
|
@ -323,7 +323,7 @@ static u32 clCmd = 0;
|
||||||
static u32 clInd = 0;
|
static u32 clInd = 0;
|
||||||
|
|
||||||
static u32 clInd2 = 0;
|
static u32 clInd2 = 0;
|
||||||
BOOL isSwapBuffers = FALSE;
|
u32 isSwapBuffers = FALSE;
|
||||||
|
|
||||||
static u32 BTind = 0;
|
static u32 BTind = 0;
|
||||||
static u32 PTind = 0;
|
static u32 PTind = 0;
|
||||||
|
|
|
@ -616,7 +616,7 @@ extern GFX3D gfx3d;
|
||||||
extern CACHE_ALIGN u32 dsDepthExtend_15bit_to_24bit[32768];
|
extern CACHE_ALIGN u32 dsDepthExtend_15bit_to_24bit[32768];
|
||||||
extern CACHE_ALIGN u8 mixTable555[32][32][32];
|
extern CACHE_ALIGN u8 mixTable555[32][32][32];
|
||||||
|
|
||||||
extern BOOL isSwapBuffers;
|
extern u32 isSwapBuffers;
|
||||||
|
|
||||||
void gfx3d_glFlush(u32 v);
|
void gfx3d_glFlush(u32 v);
|
||||||
// end GE commands
|
// end GE commands
|
||||||
|
|
Loading…
Reference in New Issue