mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
fix various instances of -1 being assigned to unsigned types
This commit is contained in:
@ -16,7 +16,7 @@ u16* IndexGenerator::index_buffer_current;
|
||||
u16* IndexGenerator::BASEIptr;
|
||||
u32 IndexGenerator::base_index;
|
||||
|
||||
static const u16 s_primitive_restart = -1;
|
||||
static const u16 s_primitive_restart = UINT16_MAX;
|
||||
|
||||
static u16* (*primitive_table[8])(u16*, u32, u32);
|
||||
|
||||
|
Reference in New Issue
Block a user