Fix a merge fail that happened when I merged in Android. It is just a bit of duplicate code, no issues came from it.
This commit is contained in:
parent
0aa9308006
commit
805009abca
|
@ -117,17 +117,6 @@ void Init(int cpu_core)
|
|||
{
|
||||
FPURoundMode::SetPrecisionMode(FPURoundMode::PREC_53);
|
||||
|
||||
memset(ppcState.mojs, 0, sizeof(ppcState.mojs));
|
||||
memset(ppcState.sr, 0, sizeof(ppcState.sr));
|
||||
ppcState.DebugCount = 0;
|
||||
ppcState.dtlb_last = 0;
|
||||
ppcState.dtlb_last = 0;
|
||||
memset(ppcState.dtlb_va, 0, sizeof(ppcState.dtlb_va));
|
||||
memset(ppcState.dtlb_pa, 0, sizeof(ppcState.dtlb_pa));
|
||||
ppcState.itlb_last = 0;
|
||||
memset(ppcState.itlb_va, 0, sizeof(ppcState.itlb_va));
|
||||
memset(ppcState.itlb_pa, 0, sizeof(ppcState.itlb_pa));
|
||||
|
||||
memset(ppcState.mojs, 0, sizeof(ppcState.mojs));
|
||||
memset(ppcState.sr, 0, sizeof(ppcState.sr));
|
||||
ppcState.DebugCount = 0;
|
||||
|
|
Loading…
Reference in New Issue