mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-27 02:40:31 +00:00
Use signed integer for comparison
This commit is contained in:
parent
fb893b3b95
commit
cc678f4fc7
@ -126,7 +126,7 @@ enum dither_mode psx_gpu_dither_mode;
|
||||
|
||||
//iCB: PGXP options
|
||||
unsigned int psx_pgxp_mode;
|
||||
unsigned int psx_pgxp_2d_tol;
|
||||
int psx_pgxp_2d_tol;
|
||||
unsigned int psx_pgxp_vertex_caching;
|
||||
unsigned int psx_pgxp_texture_correction;
|
||||
// \iCB
|
||||
|
@ -499,7 +499,7 @@ void Finalise_UVLimits(PS_GPU *gpu);
|
||||
bool Hack_FindLine(PS_GPU *gpu, tri_vertex* vertices, tri_vertex* outVertices);
|
||||
bool Hack_ForceLine(PS_GPU *gpu, tri_vertex* vertices, tri_vertex* outVertices);
|
||||
|
||||
extern unsigned int psx_pgxp_2d_tol;
|
||||
extern int psx_pgxp_2d_tol;
|
||||
|
||||
template<int numvertices, bool goraud, bool textured, int BlendMode, bool TexMult, uint32_t TexMode_TA, bool MaskEval_TA, bool pgxp>
|
||||
static void Command_DrawPolygon(PS_GPU *gpu, const uint32_t *cb)
|
||||
|
Loading…
Reference in New Issue
Block a user