summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
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 635109b21..552c8f5ee 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -53,10 +53,10 @@ public:
53 * is not required to do a full dispatch with each instruction. NOTE: the number of instructions 53 * is not required to do a full dispatch with each instruction. NOTE: the number of instructions
54 * requested is not guaranteed to run, as this will be interrupted preemptively if a hardware 54 * requested is not guaranteed to run, as this will be interrupted preemptively if a hardware
55 * update is requested (e.g. on a thread switch). 55 * update is requested (e.g. on a thread switch).
56 * @param tight_loop Number of instructions to execute. 56 * @param tight_loop If false, the CPU single-steps.
57 * @return Result status, indicating whether or not the operation succeeded. 57 * @return Result status, indicating whether or not the operation succeeded.
58 */ 58 */
59 ResultStatus RunLoop(int tight_loop = 100000); 59 ResultStatus RunLoop(bool tight_loop = true);
60 60
61 /** 61 /**
62 * Step the CPU one instruction 62 * Step the CPU one instruction