Skip to content

Commit

Permalink
HOPKINS: The return value of constructLinuxFilename is unused
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Jan 7, 2013
1 parent bd865d9 commit 8738574
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions engines/hopkins/files.cpp
Expand Up @@ -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;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion engines/hopkins/files.h
Expand Up @@ -46,7 +46,7 @@ class FileManager {
void constructFilename(const Common::String &folder, const Common::String &file);

byte *searchCat(const Common::String &file, int a2);
Common::String constructLinuxFilename(const Common::String &file);
void constructLinuxFilename(const Common::String &file);

uint32 fileSize(const Common::String &filename);
};
Expand Down

0 comments on commit 8738574

Please sign in to comment.