Skip to content

Commit

Permalink
WII: Fix Variable Shadowing Compiler Warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Jan 12, 2017
1 parent 4dc175a commit 2615e95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backends/fs/wii/wii-fs.cpp
Expand Up @@ -213,7 +213,7 @@ Common::WriteStream *WiiFilesystemNode::createWriteStream() {
return StdioStream::makeFromPath(getPath(), true);
}

bool WiiFilesystemNode::create(bool isDirectory) {
bool WiiFilesystemNode::create(bool isDirectoryFlag) {
error("Not supported");
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion backends/fs/wii/wii-fs.h
Expand Up @@ -69,7 +69,7 @@ class WiiFilesystemNode : public AbstractFSNode {

virtual Common::SeekableReadStream *createReadStream();
virtual Common::WriteStream *createWriteStream();
virtual bool create(bool isDirectory);
virtual bool create(bool isDirectoryFlag);
};

#endif

0 comments on commit 2615e95

Please sign in to comment.