mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-07-10 10:57:53 -05:00
Dyncom: Use size_t instead of int to store the instruction offsets in the instruction cache.
Fixes a few warnings.
This commit is contained in:
@ -230,7 +230,7 @@ public:
|
||||
|
||||
// TODO(bunnei): Move this cache to a better place - it should be per codeset (likely per
|
||||
// process for our purposes), not per ARMul_State (which tracks CPU core state).
|
||||
std::unordered_map<u32, int> instruction_cache;
|
||||
std::unordered_map<u32, std::size_t> instruction_cache;
|
||||
|
||||
private:
|
||||
void ResetMPCoreCP15Registers();
|
||||
|
Reference in New Issue
Block a user