aboutsummaryrefslogtreecommitdiff
path: root/sword1/sword1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sword1/sword1.cpp')
-rw-r--r--sword1/sword1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword1/sword1.cpp b/sword1/sword1.cpp
index a59025521c..13927327c8 100644
--- a/sword1/sword1.cpp
+++ b/sword1/sword1.cpp
@@ -57,7 +57,7 @@ DetectedGameList Engine_SWORD1_detectGames(const FSList &fslist) {
DetectedGameList detectedGames;
// Iterate over all files in the given directory
- for (FSList::ConstIterator file = fslist.begin(); file != fslist.end(); ++file) {
+ for (FSList::const_iterator file = fslist.begin(); file != fslist.end(); ++file) {
const char *gameName = file->displayName().c_str();
if ((0 == scumm_stricmp("swordres.rif", gameName)) ||