Fixed typo that broke build

This commit is contained in:
Bart Trzynadlowski 2016-03-22 02:44:38 +00:00
parent 4c7186b1f1
commit 028727b389
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ static CBus *s_Bus = NULL;
#ifdef SUPERMODEL_DEBUGGER
// Debugger
static CMusashi68KDebug *s_Debug = NULL;
static CMusashi68KDebug *s_Debug = NULL;
#endif
// IRQ callback

View file

@ -3972,7 +3972,7 @@ void CZ80::LoadState(CBlockFile *StateFile, const char *name)
StateFile->Read(&intLine, sizeof(intLine));
}
void mCZ80::Init(CBus *BusPtr, int (*INTF)(CZ80 *Z80))
void CZ80::Init(CBus *BusPtr, int (*INTF)(CZ80 *Z80))
{
Bus = BusPtr;
INTCallback = INTF;