diff options
author | Johannes Schickel | 2006-07-22 14:28:39 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-07-22 14:28:39 +0000 |
commit | 7caf96af6f60907c5b4870bf92d4532a4818ba0b (patch) | |
tree | e332272c25aacfafd0a5bd21aae80ecabdf72147 /engines | |
parent | 6ed00cd055abcc98b8ad5d4e2ac6396852ec9c95 (diff) | |
download | scummvm-rg350-7caf96af6f60907c5b4870bf92d4532a4818ba0b.tar.gz scummvm-rg350-7caf96af6f60907c5b4870bf92d4532a4818ba0b.tar.bz2 scummvm-rg350-7caf96af6f60907c5b4870bf92d4532a4818ba0b.zip |
Changes usage of FilesystemNode::name to FilesystemNode::displayName in the detector code.
svn-id: r23554
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/plugin.cpp b/engines/kyra/plugin.cpp index cc578c1358..14d3355c04 100644 --- a/engines/kyra/plugin.cpp +++ b/engines/kyra/plugin.cpp @@ -181,7 +181,7 @@ DetectedGameList Engine_KYRA_detectGames(const FSList &fslist) { continue; for (g = kyra_games; g->gameid; g++) { - if (scumm_stricmp(file->displayName().c_str(), g->checkFile) == 0) + if (scumm_stricmp(file->name().c_str(), g->checkFile) == 0) isFound = true; } |