diff options
author | Littleboy | 2011-06-02 18:22:59 -0400 |
---|---|---|
committer | Littleboy | 2011-06-02 18:22:59 -0400 |
commit | be7064c25ed2702457ea8c3e84a1a8a7f397c5c5 (patch) | |
tree | 8a5e10b830d293224a5a3dc836bbc2ecf79277e0 /engines/lastexpress | |
parent | eb9ea8fee679382fdab3778bf99b1bb718d89a08 (diff) | |
download | scummvm-rg350-be7064c25ed2702457ea8c3e84a1a8a7f397c5c5.tar.gz scummvm-rg350-be7064c25ed2702457ea8c3e84a1a8a7f397c5c5.tar.bz2 scummvm-rg350-be7064c25ed2702457ea8c3e84a1a8a7f397c5c5.zip |
LASTEXPRESS: Remove unused LastExpressEngine::errorString()
Diffstat (limited to 'engines/lastexpress')
-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; } |