Browse Source

added a message option to Core::Halt function

pull/15/merge
ShizZy 12 years ago
parent
commit
539bf8bc86
  1. 2
      src/core/src/core.cpp
  2. 2
      src/core/src/core.h

2
src/core/src/core.cpp

@ -42,7 +42,7 @@ void SingleStep() {
} }
/// Halt the core /// Halt the core
void Halt() {
void Halt(const char *msg) {
// TODO(ShizZy): ImplementMe // TODO(ShizZy): ImplementMe
} }

2
src/core/src/core.h

@ -45,7 +45,7 @@ void RunLoop();
void SingleStep(); void SingleStep();
/// Halt the core /// Halt the core
void Halt();
void Halt(const char *msg);
/// Kill the core /// Kill the core
void Stop(); void Stop();

Loading…
Cancel
Save