mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Merge pull request #2631 from lioncash/regcache
JitRegCache: Get rid of an unnecessary cast
This commit is contained in:
commit
9b9bab2179
@ -137,7 +137,7 @@ X64Reg RegCache::GetFreeXReg()
|
||||
X64Reg xr = (X64Reg)aOrder[i];
|
||||
if (!xregs[xr].locked && xregs[xr].free)
|
||||
{
|
||||
return (X64Reg)xr;
|
||||
return xr;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user