aboutsummaryrefslogtreecommitdiff
path: root/sky/sky.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sky/sky.cpp')
-rw-r--r--sky/sky.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sky/sky.cpp b/sky/sky.cpp
index 57e7e7d4ae..08d7b40c1c 100644
--- a/sky/sky.cpp
+++ b/sky/sky.cpp
@@ -88,7 +88,7 @@ GameList Engine_SKY_gameList() {
DetectedGameList Engine_SKY_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 *fileName = file->displayName().c_str();
if (0 == scumm_stricmp("sky.dsk", fileName)) {