remove extra qualifier

This commit is contained in:
Ian Curtis 2018-01-22 21:10:20 +00:00
parent 04758e38b6
commit 85a638bc06

View file

@ -54,19 +54,19 @@ namespace Debugger
// Inlined methods
void CMusashi68KDebug::SetM68KContext()
void SetM68KContext()
{
M68KGetContext(&m_savedCtx);
if (m_savedCtx.Debug != this)
M68KSetContext(m_ctx);
}
void CMusashi68KDebug::UpdateM68KContext(M68KCtx *ctx)
void UpdateM68KContext(M68KCtx *ctx)
{
m_ctx = ctx;
}
void CMusashi68KDebug::RestoreM68KContext()
void RestoreM68KContext()
{
if (m_savedCtx.Debug != this)
M68KSetContext(&m_savedCtx);