mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 15:31:17 +01:00
Merge pull request #711 from lioncash/cast
Core: Get rid of a cast in JitRegCache
This commit is contained in:
commit
e0b6f8c9c4
@ -125,7 +125,7 @@ void RegCache::FlushR(X64Reg reg)
|
||||
|
||||
int RegCache::SanityCheck() const
|
||||
{
|
||||
for (int i = 0; i < (int)regs.size(); i++)
|
||||
for (size_t i = 0; i < regs.size(); i++)
|
||||
{
|
||||
if (regs[i].away)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user