mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-10 21:44:28 +00:00
Core: Get rid of a cast in JitRegCache.cpp
This commit is contained in:
parent
6c923b776e
commit
4e2f487741
@ -125,7 +125,7 @@ void RegCache::FlushR(X64Reg reg)
|
|||||||
|
|
||||||
int RegCache::SanityCheck() const
|
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)
|
if (regs[i].away)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user