From 124a2d1c3ee5e854d3e0968a8a3f210112406c6a Mon Sep 17 00:00:00 2001 From: Jake Stine Date: Mon, 23 Nov 2020 21:07:33 -0800 Subject: [PATCH] libretro: EventCycles must match definition in gpu.cpp (signed) ... and as a rule of thumb, always favor signed int unless there is specific reason to use unsigned (normally limited to situations where full 4GB unsigned range is required during comparison operation) --- libretro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro.cpp b/libretro.cpp index c813a589f..a256afd82 100644 --- a/libretro.cpp +++ b/libretro.cpp @@ -108,7 +108,7 @@ int memfd; #endif #endif -uint32 EventCycles = 128; +int32 EventCycles = 128; // CPU overclock factor (or 0 if disabled) int32_t psx_overclock_factor = 0;