aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/groovie/groovie.cpp5
-rw-r--r--engines/groovie/groovie.h1
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;