diff options
author | D G Turner | 2011-06-03 13:58:06 +0100 |
---|---|---|
committer | D G Turner | 2011-06-03 13:58:06 +0100 |
commit | 938415aca1bd8f51791fe6b6970323659f0178ff (patch) | |
tree | aad8ffc5d0336d3ed1e08423a455ca17e909c145 | |
parent | 87070cbdc8f8c08ca10b16ce3a3ded70c5f52e2b (diff) | |
download | scummvm-rg350-938415aca1bd8f51791fe6b6970323659f0178ff.tar.gz scummvm-rg350-938415aca1bd8f51791fe6b6970323659f0178ff.tar.bz2 scummvm-rg350-938415aca1bd8f51791fe6b6970323659f0178ff.zip |
GROOVIE: Remove Unecessary debugger errorString() function.
-rw-r--r-- | engines/groovie/groovie.cpp | 5 | ||||
-rw-r--r-- | engines/groovie/groovie.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/engines/groovie/groovie.cpp b/engines/groovie/groovie.cpp index 8b6ee2ca42..5f95de649a 100644 --- a/engines/groovie/groovie.cpp +++ b/engines/groovie/groovie.cpp @@ -336,11 +336,6 @@ bool GroovieEngine::hasFeature(EngineFeature f) const { (f == kSupportsLoadingDuringRuntime); } -void GroovieEngine::errorString(const char *buf_input, char *buf_output, int buf_output_size) { - //snprintf(buf_output, buf_output_size, "%s%s\n", _script.getContext().c_str(), buf_input); - snprintf(buf_output, buf_output_size, "%s", buf_input); -} - void GroovieEngine::syncSoundSettings() { Engine::syncSoundSettings(); diff --git a/engines/groovie/groovie.h b/engines/groovie/groovie.h index eb64cfc60a..df2f062757 100644 --- a/engines/groovie/groovie.h +++ b/engines/groovie/groovie.h @@ -91,7 +91,6 @@ protected: // Engine APIs Common::Error run(); - virtual void errorString(const char *buf_input, char *buf_output, int buf_output_size); virtual bool hasFeature(EngineFeature f) const; |