cpuid: finish converting to int32_t

fixes b25cb6ea63
This commit is contained in:
pstef 2025-04-11 19:20:11 +00:00
parent 05adec60da
commit ab3b321c66
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ uint64_t cpu_features_get(void)
cpu |= RETRO_SIMD_MMX | RETRO_SIMD_SSE | RETRO_SIMD_MMXEXT;
#elif defined(CPU_X86)
unsigned max_flag = 0;
int flags[4];
int32_t flags[4];
int vendor_shuffle[3];
char vendor[13];
x86_cpuid(0, flags);