summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-01-23 20:42:45 -0500
committerGravatar GitHub2018-01-23 20:42:45 -0500
commit337664ae7c9a56fbe6b51d1efd949328fbe986b8 (patch)
treec09bb728bfc10415e5afebdb0b64cd3607177d82 /src
parentMerge pull request #135 from Subv/no_ports (diff)
parentCorrect Spelling (diff)
downloadyuzu-337664ae7c9a56fbe6b51d1efd949328fbe986b8.tar.gz
yuzu-337664ae7c9a56fbe6b51d1efd949328fbe986b8.tar.xz
yuzu-337664ae7c9a56fbe6b51d1efd949328fbe986b8.zip
Merge pull request #136 from N00byKing/patch-1
Correct Spelling
Diffstat (limited to 'src')
-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 a9a035a1b..06ab4c75f 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -51,13 +51,13 @@ public:
51 * requested is not guaranteed to run, as this will be interrupted preemptively if a hardware 51 * requested is not guaranteed to run, as this will be interrupted preemptively if a hardware
52 * update is requested (e.g. on a thread switch). 52 * update is requested (e.g. on a thread switch).
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 whether or not the operation succeeded.
55 */ 55 */
56 ResultStatus RunLoop(int tight_loop = 100000); 56 ResultStatus RunLoop(int tight_loop = 100000);
57 57
58 /** 58 /**
59 * Step the CPU one instruction 59 * Step the CPU one instruction
60 * @return Result status, indicating whethor or not the operation succeeded. 60 * @return Result status, indicating whether or not the operation succeeded.
61 */ 61 */
62 ResultStatus SingleStep(); 62 ResultStatus SingleStep();
63 63