summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-01-04 16:52:16 -0500
committerGravatar bunnei2018-01-04 16:52:16 -0500
commit24f10a20e7270e97ef45043088fa53612cad955a (patch)
tree1c9581d6d593c71596405d570508f0f2903a53bc /src
parentcitra_qt: Remove VFP registers, since this isn't used anyways and caused an a... (diff)
downloadyuzu-24f10a20e7270e97ef45043088fa53612cad955a.tar.gz
yuzu-24f10a20e7270e97ef45043088fa53612cad955a.tar.xz
yuzu-24f10a20e7270e97ef45043088fa53612cad955a.zip
core: Increase tight_loop 100x for speed.
Diffstat (limited to 'src')
-rw-r--r--src/core/core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 9805cc694..a9a035a1b 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -53,7 +53,7 @@ public:
53 * @param tight_loop Number of instructions to execute. 53 * @param tight_loop Number of instructions to execute.
54 * @return Result status, indicating whethor or not the operation succeeded. 54 * @return Result status, indicating whethor or not the operation succeeded.
55 */ 55 */
56 ResultStatus RunLoop(int tight_loop = 1000); 56 ResultStatus RunLoop(int tight_loop = 100000);
57 57
58 /** 58 /**
59 * Step the CPU one instruction 59 * Step the CPU one instruction