diff options
author | ShizZy <shizzy@6bit.net> | 2013-10-01 19:07:33 -0400 |
---|---|---|
committer | ShizZy <shizzy@6bit.net> | 2013-10-01 19:07:33 -0400 |
commit | 539bf8bc86e03ca26f290ff7e766f835c0473a5f (patch) | |
tree | 7dd9f3520614349450d69cfaed08267178eb1c68 /src/core/src/core.cpp | |
parent | 2f2a980c92eb6bf1625e4895fe94222f0a71f577 (diff) |
added a message option to Core::Halt function
Diffstat (limited to 'src/core/src/core.cpp')
-rw-r--r-- | src/core/src/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/src/core.cpp b/src/core/src/core.cpp index a748ebbd7c..5b118d4fbb 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 } |