diff options
| author | Filippos Karapetis | 2013-01-07 16:21:55 +0200 |
|---|---|---|
| committer | Filippos Karapetis | 2013-01-07 16:21:55 +0200 |
| commit | 87385740befe7e5325032a8a468fa595b4621ccf (patch) | |
| tree | 11a709f043b6ca522843762f21ded29ce91c04c2 /engines/hopkins/files.cpp | |
| parent | bd865d9741878b56a86c1389e66dfdee24ba1e39 (diff) | |
| download | scummvm-rg350-87385740befe7e5325032a8a468fa595b4621ccf.tar.gz scummvm-rg350-87385740befe7e5325032a8a468fa595b4621ccf.tar.bz2 scummvm-rg350-87385740befe7e5325032a8a468fa595b4621ccf.zip | |
HOPKINS: The return value of constructLinuxFilename is unused
Diffstat (limited to 'engines/hopkins/files.cpp')
| -rw-r--r-- | engines/hopkins/files.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/hopkins/files.cpp b/engines/hopkins/files.cpp index e061b9c2d4..279ca4c0d3 100644 --- a/engines/hopkins/files.cpp +++ b/engines/hopkins/files.cpp @@ -118,9 +118,8 @@ void FileManager::constructFilename(const Common::String &folder, const Common:: /** * Construct Linux filename */ -Common::String FileManager::constructLinuxFilename(const Common::String &file) { +void FileManager::constructLinuxFilename(const Common::String &file) { _vm->_globals._curFilename = file; - return file; } /** |
