aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar ShizZy <shizzy@6bit.net>2013-10-01 19:07:33 -0400
committerGravatar ShizZy <shizzy@6bit.net>2013-10-01 19:07:33 -0400
commit539bf8bc86e03ca26f290ff7e766f835c0473a5f (patch)
tree7dd9f3520614349450d69cfaed08267178eb1c68 /src/core
parent2f2a980c92eb6bf1625e4895fe94222f0a71f577 (diff)
added a message option to Core::Halt function
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();