mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-22 19:39:24 +01:00
Fix pause
This commit is contained in:
parent
6c5f57d628
commit
9035645c33
@ -299,10 +299,6 @@ void C64::VBlank(bool draw_frame)
|
|||||||
TheDisplay->Update();
|
TheDisplay->Update();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->have_a_break) {
|
|
||||||
|
|
||||||
TheSID->PauseSound();
|
|
||||||
}
|
|
||||||
this->network_vblank();
|
this->network_vblank();
|
||||||
|
|
||||||
Gui::gui->runLogic();
|
Gui::gui->runLogic();
|
||||||
@ -338,7 +334,7 @@ void C64::thread_func(void)
|
|||||||
if (TheVIC->EmulateCycle())
|
if (TheVIC->EmulateCycle())
|
||||||
TheSID->EmulateLine();
|
TheSID->EmulateLine();
|
||||||
/* No need to emulate anything for the client */
|
/* No need to emulate anything for the client */
|
||||||
if (this->network_connection_type != CLIENT) {
|
if (!this->have_a_break && this->network_connection_type != CLIENT) {
|
||||||
TheCIA1->CheckIRQs();
|
TheCIA1->CheckIRQs();
|
||||||
TheCIA2->CheckIRQs();
|
TheCIA2->CheckIRQs();
|
||||||
TheCIA1->EmulateCycle();
|
TheCIA1->EmulateCycle();
|
||||||
|
Loading…
Reference in New Issue
Block a user