diff --git a/TODO b/TODO index 53186321..8b55f369 100644 --- a/TODO +++ b/TODO @@ -25,6 +25,8 @@ can't use arrow keys to navigate in camera view when capslock is enabled was looking around in 3dview and then autosave thingy came up and now i cant do anything anymore :( +upgrade to new API for SymGetModuleInfo + HIGH priority features diff --git a/plugins/vfspk3/vfs.cpp b/plugins/vfspk3/vfs.cpp index c54452f1..27a2987d 100644 --- a/plugins/vfspk3/vfs.cpp +++ b/plugins/vfspk3/vfs.cpp @@ -351,7 +351,7 @@ void InitDirectory(const char* directory, ArchiveModules& archiveModules) if(name == 0) break; - char *ext = strrchr (name, '.'); + const char *ext = strrchr (name, '.'); if ((ext == 0) || *(++ext) == '\0' || GetArchiveTable(archiveModules, ext) == 0) continue;