mirror of https://github.com/PCSX2/pcsx2.git
Debugger: Try to fix Wreorder warnings.
This commit is contained in:
parent
be9587d520
commit
b0932825a9
|
@ -59,15 +59,15 @@ u32 __fastcall standardizeBreakpointAddressIop(u32 addr)
|
||||||
return addr;
|
return addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
MemCheck::MemCheck() :
|
MemCheck::MemCheck()
|
||||||
cpu(BREAKPOINT_EE),
|
: start(0)
|
||||||
start(0),
|
, end(0)
|
||||||
end(0),
|
, cond(MEMCHECK_READWRITE)
|
||||||
cond(MEMCHECK_READWRITE),
|
, result(MEMCHECK_BOTH)
|
||||||
result(MEMCHECK_BOTH),
|
, cpu(BREAKPOINT_EE)
|
||||||
lastPC(0),
|
, lastPC(0)
|
||||||
lastAddr(0),
|
, lastAddr(0)
|
||||||
lastSize(0)
|
, lastSize(0)
|
||||||
{
|
{
|
||||||
numHits = 0;
|
numHits = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue