More SID Work
This commit is contained in:
parent
207438d02c
commit
6dbf0e4822
|
@ -72,7 +72,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
||||||
default:
|
default:
|
||||||
throw new System.Exception();
|
throw new System.Exception();
|
||||||
}
|
}
|
||||||
|
|
||||||
CartPort = new CartridgePort();
|
CartPort = new CartridgePort();
|
||||||
Cassette = new CassettePort();
|
Cassette = new CassettePort();
|
||||||
ColorRam = new Chip2114();
|
ColorRam = new Chip2114();
|
||||||
|
@ -170,7 +169,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
||||||
|
|
||||||
public void Flush()
|
public void Flush()
|
||||||
{
|
{
|
||||||
Sid.Flush();
|
Sid.Flush(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------------------------
|
// -----------------------------------------
|
||||||
|
@ -358,7 +357,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
||||||
ser.Sync("_joystickPressed", ref _joystickPressed, useNull: false);
|
ser.Sync("_joystickPressed", ref _joystickPressed, useNull: false);
|
||||||
ser.Sync("_keyboardPressed", ref _keyboardPressed, useNull: false);
|
ser.Sync("_keyboardPressed", ref _keyboardPressed, useNull: false);
|
||||||
ser.Sync("_restorePressed", ref _restorePressed);
|
ser.Sync("_restorePressed", ref _restorePressed);
|
||||||
ser.Sync("_pollIndex", ref _pollIndex);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue