mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 18:02:05 +00:00
Silence MSVC8+ warning C4800 about forcing an int value to bool that got turned into error C2220 (Warning treated as error).
svn-id: r31484
This commit is contained in:
parent
a525b5bdd5
commit
d0f46196c2
@ -355,7 +355,7 @@ void Resource::checkFile(const Common::String &file) {
|
||||
ResFileEntry entry;
|
||||
entry.parent = "";
|
||||
entry.size = temp.size();
|
||||
entry.mounted = file.compareToIgnoreCase(StaticResource::staticDataFilename());
|
||||
entry.mounted = file.compareToIgnoreCase(StaticResource::staticDataFilename()) != 0;
|
||||
entry.preload = false;
|
||||
entry.prot = false;
|
||||
entry.type = ResFileEntry::kAutoDetect;
|
||||
|
Loading…
Reference in New Issue
Block a user