Debugger: Try to fix Wreorder warnings.

This commit is contained in:
lightningterror 2021-09-26 15:13:15 +02:00
parent be9587d520
commit b0932825a9
1 changed files with 9 additions and 9 deletions

View File

@ -59,15 +59,15 @@ u32 __fastcall standardizeBreakpointAddressIop(u32 addr)
return addr;
}
MemCheck::MemCheck() :
cpu(BREAKPOINT_EE),
start(0),
end(0),
cond(MEMCHECK_READWRITE),
result(MEMCHECK_BOTH),
lastPC(0),
lastAddr(0),
lastSize(0)
MemCheck::MemCheck()
: start(0)
, end(0)
, cond(MEMCHECK_READWRITE)
, result(MEMCHECK_BOTH)
, cpu(BREAKPOINT_EE)
, lastPC(0)
, lastAddr(0)
, lastSize(0)
{
numHits = 0;
}