summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();