aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-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 a748ebbd..5b118d4f 100644
--- a/src/core/src/core.cpp
+++ b/src/core/src/core.cpp
@@ -42,7 +42,7 @@ void SingleStep() {
}
/// Halt the core
-void Halt() {
+void Halt(const char *msg) {
// TODO(ShizZy): ImplementMe
}
diff --git a/src/core/src/core.h b/src/core/src/core.h
index f018ff6e..78ee3ff7 100644
--- a/src/core/src/core.h
+++ b/src/core/src/core.h
@@ -45,7 +45,7 @@ void RunLoop();
void SingleStep();
/// Halt the core
-void Halt();
+void Halt(const char *msg);
/// Kill the core
void Stop();