Skip to content

Commit

Permalink
libretro: EventCycles must match definition in gpu.cpp (signed)
Browse files Browse the repository at this point in the history
... 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)
  • Loading branch information
jstine35 committed Nov 24, 2020
1 parent 159fc88 commit c7b48af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libretro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c7b48af

Please sign in to comment.