diff options
author | Twinaphex | 2017-06-18 18:41:06 +0200 |
---|---|---|
committer | GitHub | 2017-06-18 18:41:06 +0200 |
commit | 1aecedc999445e9a27e04f665fd562b576775d08 (patch) | |
tree | c526c7d332be548a42364eea9113b6d33345b840 /source/cpu.c | |
parent | dc596c886e0ec2728dc353dd7862cdf1e5a5ff44 (diff) | |
parent | bcaf44c511efaad9d803dde9b0fdbb046498c66f (diff) | |
download | snesemu-1aecedc999445e9a27e04f665fd562b576775d08.tar.gz snesemu-1aecedc999445e9a27e04f665fd562b576775d08.tar.bz2 snesemu-1aecedc999445e9a27e04f665fd562b576775d08.zip |
Merge pull request #36 from jamsilva/master
Compatibility fixes.
Diffstat (limited to 'source/cpu.c')
-rw-r--r-- | source/cpu.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source/cpu.c b/source/cpu.c index 15206c5..1724fd6 100644 --- a/source/cpu.c +++ b/source/cpu.c @@ -15,11 +15,10 @@ #include "spc7110.h" #include "obc1.h" -extern struct FxInit_s SuperFX; +extern FxInit_s SuperFX; void S9xResetSuperFX() { - SuperFX.vFlags = 0; FxReset(&SuperFX); } @@ -57,9 +56,7 @@ void S9xResetCPU() CPU.V_Counter = 0; CPU.MemSpeed = SLOW_ONE_CYCLE; CPU.MemSpeedx2 = SLOW_ONE_CYCLE * 2; - CPU.AutoSaveTimer = 0; CPU.SRAMModified = false; - CPU.BRKTriggered = false; CPU.NMICycleCount = 0; CPU.IRQCycleCount = 0; S9xSetPCBase(ICPU.Registers.PC); @@ -94,9 +91,7 @@ static void CommonS9xReset() if (Settings.C4) S9xInitC4(); -#ifdef WANT_CHEATS S9xInitCheatData(); -#endif } void S9xReset() |