mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-13 07:05:12 +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();
|
||||
}
|
||||
|
||||
if (this->have_a_break) {
|
||||
|
||||
TheSID->PauseSound();
|
||||
}
|
||||
this->network_vblank();
|
||||
|
||||
Gui::gui->runLogic();
|
||||
@ -338,7 +334,7 @@ void C64::thread_func(void)
|
||||
if (TheVIC->EmulateCycle())
|
||||
TheSID->EmulateLine();
|
||||
/* 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();
|
||||
TheCIA2->CheckIRQs();
|
||||
TheCIA1->EmulateCycle();
|
||||
|
Loading…
Reference in New Issue
Block a user