From 539bf8bc86e03ca26f290ff7e766f835c0473a5f Mon Sep 17 00:00:00 2001
From: ShizZy <shizzy@6bit.net>
Date: Tue, 1 Oct 2013 19:07:33 -0400
Subject: [PATCH] added a message option to Core::Halt function

---
 src/core/src/core.cpp | 2 +-
 src/core/src/core.h   | 2 +-
 2 files changed, 2 insertions(+), 2 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
 }
 
diff --git a/src/core/src/core.h b/src/core/src/core.h
index f018ff6ede..78ee3ff750 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();