Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a merge fail that happened when I merged in Android. It is just a…
… bit of duplicate code, no issues came from it.
  • Loading branch information
Sonicadvance1 committed Aug 9, 2013
1 parent 0aa9308 commit 805009a
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Source/Core/Core/Src/PowerPC/PowerPC.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 805009a

Please sign in to comment.