diff options
author | Travis Howell | 2004-08-21 09:51:01 +0000 |
---|---|---|
committer | Travis Howell | 2004-08-21 09:51:01 +0000 |
commit | 3c233116252d3abd545e1a369a5c2f446abf9b1e (patch) | |
tree | 128ee4eaf4462de0282bc96b95c4ca1ff33e2ce6 /simon | |
parent | db3e1b7b314ae1c54d79acba6ab8b7f4f15e56db (diff) | |
download | scummvm-rg350-3c233116252d3abd545e1a369a5c2f446abf9b1e.tar.gz scummvm-rg350-3c233116252d3abd545e1a369a5c2f446abf9b1e.tar.bz2 scummvm-rg350-3c233116252d3abd545e1a369a5c2f446abf9b1e.zip |
Typo
svn-id: r14666
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index f3928ff4ea..c7939a6b25 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -115,7 +115,7 @@ DetectedGameList Engine_SIMON_detectGames(const FSList &fslist) { for (FSList::const_iterator file = fslist.begin(); file != fslist.end(); ++file) { const char *name = file->displayName().c_str(); - if ((0 == scumm_stricmp(detectName, name)) || (!0 == scumm_stricmp(detectName2, name))) { + if ((!scumm_stricmp(detectName, name)) || (!scumm_stricmp(detectName2, name))) { // Match found, add to list of candidates, then abort inner loop. detectedGames.push_back(g->toGameSettings()); fileSet.addKey(file->path()); |