summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorN00byKing <N00byKing@users.noreply.github.com>2018-02-14 18:47:48 +0100
committerN00byKing <N00byKing@hotmail.de>2018-02-25 11:44:21 +0100
commitbc88cae0c730ece6d027778267eb0fa256479bda (patch)
treeeaf8581141f7240b6cf23eda17834558b6fe1c40 /src/core/core.h
parentMerge pull request #190 from bunnei/fix-qt-waittree (diff)
downloadyuzu-bc88cae0c730ece6d027778267eb0fa256479bda.tar
yuzu-bc88cae0c730ece6d027778267eb0fa256479bda.tar.gz
yuzu-bc88cae0c730ece6d027778267eb0fa256479bda.tar.bz2
yuzu-bc88cae0c730ece6d027778267eb0fa256479bda.tar.lz
yuzu-bc88cae0c730ece6d027778267eb0fa256479bda.tar.xz
yuzu-bc88cae0c730ece6d027778267eb0fa256479bda.tar.zst
yuzu-bc88cae0c730ece6d027778267eb0fa256479bda.zip
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h
index f63cc47cc..2d15ebe34 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -51,10 +51,10 @@ public:
* is not required to do a full dispatch with each instruction. NOTE: the number of instructions
* requested is not guaranteed to run, as this will be interrupted preemptively if a hardware
* update is requested (e.g. on a thread switch).
- * @param tight_loop Number of instructions to execute.
+ * @param tight_loop If false, the CPU single-steps.
* @return Result status, indicating whether or not the operation succeeded.
*/
- ResultStatus RunLoop(int tight_loop = 100000);
+ ResultStatus RunLoop(bool tight_loop = true);
/**
* Step the CPU one instruction