GROOVIE: Remove Unecessary debugger errorString() function.

This commit is contained in:
D G Turner 2011-06-03 13:58:06 +01:00
parent 87070cbdc8
commit 938415aca1
2 changed files with 0 additions and 6 deletions

View file

@ -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();

View file

@ -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;