diff options
| -rw-r--r-- | src/core/src/core.cpp | 2 | ||||
| -rw-r--r-- | 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 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 |
| 45 | void Halt() { | 45 | void 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(); | |||
| 45 | void SingleStep(); | 45 | void SingleStep(); |
| 46 | 46 | ||
| 47 | /// Halt the core | 47 | /// Halt the core |
| 48 | void Halt(); | 48 | void Halt(const char *msg); |
| 49 | 49 | ||
| 50 | /// Kill the core | 50 | /// Kill the core |
| 51 | void Stop(); | 51 | void Stop(); |