mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 13:19:59 +00:00
Core: Changed HW update/thread reschedule to occur more frequently (assume each instruction is ~3 cycles)
This commit is contained in:
parent
b774b8b04e
commit
3449aaa350
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ ARM_Interface* g_sys_core = NULL; ///< ARM11 system (OS) core
|
||||||
/// Run the core CPU loop
|
/// Run the core CPU loop
|
||||||
void RunLoop() {
|
void RunLoop() {
|
||||||
for (;;){
|
for (;;){
|
||||||
g_app_core->Run(LCD::kFrameTicks / 2);
|
g_app_core->Run(LCD::kFrameTicks / 3);
|
||||||
HW::Update();
|
HW::Update();
|
||||||
Kernel::Reschedule();
|
Kernel::Reschedule();
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@ void SingleStep() {
|
||||||
|
|
||||||
g_app_core->Step();
|
g_app_core->Step();
|
||||||
|
|
||||||
if ((ticks >= LCD::kFrameTicks / 2) || HLE::g_reschedule) {
|
if ((ticks >= LCD::kFrameTicks / 3) || HLE::g_reschedule) {
|
||||||
HW::Update();
|
HW::Update();
|
||||||
Kernel::Reschedule();
|
Kernel::Reschedule();
|
||||||
ticks = 0;
|
ticks = 0;
|
||||||
|
|
Loading…
Reference in a new issue