summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ShizZy2013-10-01 19:07:33 -0400
committerGravatar ShizZy2013-10-01 19:07:33 -0400
commit539bf8bc86e03ca26f290ff7e766f835c0473a5f (patch)
tree7dd9f3520614349450d69cfaed08267178eb1c68 /src
parentadded TIME logger for core timing (diff)
downloadyuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.gz
yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.xz
yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.zip
added a message option to Core::Halt function
Diffstat (limited to 'src')
-rw-r--r--src/core/src/core.cpp2
-rw-r--r--src/core/src/core.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/src/core.cpp b/src/core/src/core.cpp
index a748ebbd7..5b118d4fb 100644
--- a/src/core/src/core.cpp
+++ b/src/core/src/core.cpp
@@ -42,7 +42,7 @@ void SingleStep() {
42} 42}
43 43
44/// Halt the core 44/// Halt the core
45void Halt() { 45void Halt(const char *msg) {
46 // TODO(ShizZy): ImplementMe 46 // TODO(ShizZy): ImplementMe
47} 47}
48 48
diff --git a/src/core/src/core.h b/src/core/src/core.h
index f018ff6ed..78ee3ff75 100644
--- a/src/core/src/core.h
+++ b/src/core/src/core.h
@@ -45,7 +45,7 @@ void RunLoop();
45void SingleStep(); 45void SingleStep();
46 46
47/// Halt the core 47/// Halt the core
48void Halt(); 48void Halt(const char *msg);
49 49
50/// Kill the core 50/// Kill the core
51void Stop(); 51void Stop();