mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Merge pull request #2631 from lioncash/regcache
JitRegCache: Get rid of an unnecessary cast
This commit is contained in:
@@ -137,7 +137,7 @@ X64Reg RegCache::GetFreeXReg()
|
||||
X64Reg xr = (X64Reg)aOrder[i];
|
||||
if (!xregs[xr].locked && xregs[xr].free)
|
||||
{
|
||||
return (X64Reg)xr;
|
||||
return xr;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user