mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
remove extra qualifier
This commit is contained in:
parent
04758e38b6
commit
85a638bc06
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue