diff options
author | ShizZy <shizzy@6bit.net> | 2013-10-02 01:07:33 +0200 |
---|---|---|
committer | ShizZy <shizzy@6bit.net> | 2013-10-02 01:07:33 +0200 |
commit | 539bf8bc86e03ca26f290ff7e766f835c0473a5f (patch) | |
tree | 7dd9f3520614349450d69cfaed08267178eb1c68 /src | |
parent | added TIME logger for core timing (diff) | |
download | yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.gz yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.bz2 yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.lz yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.xz yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.zst yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.zip |
Diffstat (limited to 'src')
-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() { } /// 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 f018ff6ed..78ee3ff75 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(); |