diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-06 05:32:02 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-13 15:51:09 +0200 |
commit | 3449aaa35066b9a4bd784fe86a303666713076bf (patch) | |
tree | 139e5a013647dcc961bf25b9ebeda59d698e1828 /src/core | |
parent | Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrectly set (diff) | |
download | yuzu-3449aaa35066b9a4bd784fe86a303666713076bf.tar yuzu-3449aaa35066b9a4bd784fe86a303666713076bf.tar.gz yuzu-3449aaa35066b9a4bd784fe86a303666713076bf.tar.bz2 yuzu-3449aaa35066b9a4bd784fe86a303666713076bf.tar.lz yuzu-3449aaa35066b9a4bd784fe86a303666713076bf.tar.xz yuzu-3449aaa35066b9a4bd784fe86a303666713076bf.tar.zst yuzu-3449aaa35066b9a4bd784fe86a303666713076bf.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 0500394b3..6ec25fdd4 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -25,7 +25,7 @@ ARM_Interface* g_sys_core = NULL; ///< ARM11 system (OS) core /// Run the core CPU loop void RunLoop() { for (;;){ - g_app_core->Run(LCD::kFrameTicks / 2); + g_app_core->Run(LCD::kFrameTicks / 3); HW::Update(); Kernel::Reschedule(); } @@ -37,7 +37,7 @@ void SingleStep() { g_app_core->Step(); - if ((ticks >= LCD::kFrameTicks / 2) || HLE::g_reschedule) { + if ((ticks >= LCD::kFrameTicks / 3) || HLE::g_reschedule) { HW::Update(); Kernel::Reschedule(); ticks = 0; |