diff options
-rw-r--r-- | engines/lastexpress/lastexpress.cpp | 4 | ||||
-rw-r--r-- | engines/lastexpress/lastexpress.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/engines/lastexpress/lastexpress.cpp b/engines/lastexpress/lastexpress.cpp index d195fcfad3..6fdd18413b 100644 --- a/engines/lastexpress/lastexpress.cpp +++ b/engines/lastexpress/lastexpress.cpp @@ -314,8 +314,4 @@ bool LastExpressEngine::hasFeature(EngineFeature f) const { return (f == kSupportsRTL); } -void LastExpressEngine::errorString(const char *buf_input, char *buf_output, int buf_output_size) { - snprintf(buf_output, (uint)buf_output_size, "%s", buf_input); -} - } // End of namespace LastExpress diff --git a/engines/lastexpress/lastexpress.h b/engines/lastexpress/lastexpress.h index 270ab655a1..d78bba36f0 100644 --- a/engines/lastexpress/lastexpress.h +++ b/engines/lastexpress/lastexpress.h @@ -71,7 +71,6 @@ class LastExpressEngine : public Engine { 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; virtual Debugger *getDebugger() { return _debugger; } |