diff options
| author | D G Turner | 2017-01-12 08:22:40 +0000 |
|---|---|---|
| committer | D G Turner | 2017-01-12 08:22:40 +0000 |
| commit | adbf18abca0d6a43830645ab0d8ce492bbbd4971 (patch) | |
| tree | 60f64382d27a1fcede127c89c2fdd868007c3d58 /backends/fs/n64 | |
| parent | 6c4b89e6dc439299af68afaa75b366e4aece45c9 (diff) | |
| download | scummvm-rg350-adbf18abca0d6a43830645ab0d8ce492bbbd4971.tar.gz scummvm-rg350-adbf18abca0d6a43830645ab0d8ce492bbbd4971.tar.bz2 scummvm-rg350-adbf18abca0d6a43830645ab0d8ce492bbbd4971.zip | |
BACKENDS: Fix Shadowing Compiler Warning for isDirectory symbol.
This should ensure that any future cut-and-paste for new backends do not
repeat this same warning issue.
Diffstat (limited to 'backends/fs/n64')
| -rw-r--r-- | backends/fs/n64/n64-fs.cpp | 2 | ||||
| -rw-r--r-- | backends/fs/n64/n64-fs.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/fs/n64/n64-fs.cpp b/backends/fs/n64/n64-fs.cpp index d568500d30..5a131c0305 100644 --- a/backends/fs/n64/n64-fs.cpp +++ b/backends/fs/n64/n64-fs.cpp @@ -160,7 +160,7 @@ Common::WriteStream *N64FilesystemNode::createWriteStream() { return RomfsStream::makeFromPath(getPath(), true); } -bool N64FilesystemNode::create(bool isDirectory) { +bool N64FilesystemNode::create(bool isDirectoryFlag) { error("Not supported"); return false; } diff --git a/backends/fs/n64/n64-fs.h b/backends/fs/n64/n64-fs.h index d520ad5be6..b2de8a4bc4 100644 --- a/backends/fs/n64/n64-fs.h +++ b/backends/fs/n64/n64-fs.h @@ -73,7 +73,7 @@ public: virtual Common::SeekableReadStream *createReadStream(); virtual Common::WriteStream *createWriteStream(); - virtual bool create(bool isDirectory); + virtual bool create(bool isDirectoryFlag); }; #endif |
