diff options
| author | 2013-10-01 19:07:33 -0400 | |
|---|---|---|
| committer | 2013-10-01 19:07:33 -0400 | |
| commit | 539bf8bc86e03ca26f290ff7e766f835c0473a5f (patch) | |
| tree | 7dd9f3520614349450d69cfaed08267178eb1c68 /src | |
| parent | added TIME logger for core timing (diff) | |
| download | yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.gz yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.tar.xz yuzu-539bf8bc86e03ca26f290ff7e766f835c0473a5f.zip | |
added a message option to Core::Halt function
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() { | |||
| 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(); |