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.
This commit is contained in:
D G Turner 2017-01-12 08:22:40 +00:00
parent 6c4b89e6dc
commit adbf18abca
17 changed files with 27 additions and 27 deletions

View file

@ -66,7 +66,7 @@ public:
virtual Common::SeekableReadStream *createReadStream();
virtual Common::WriteStream *createWriteStream();
virtual bool create(bool isDirectory);
virtual bool create(bool isDirectoryFlag);
};
#endif