]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
fixed const inconsistencies
authorspog <spog>
Sun, 19 Feb 2006 19:31:17 +0000 (19:31 +0000)
committerspog <spog>
Sun, 19 Feb 2006 19:31:17 +0000 (19:31 +0000)
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@14 8a3a26a2-13c4-0310-b231-cf6edde360e5

TODO
plugins/vfspk3/vfs.cpp

diff --git a/TODO b/TODO
index 53186321c4ce54a96060951a93e7e271954058e3..8b55f3692522d43ce2cfee5c41a9db9d090cb358 100644 (file)
--- a/TODO
+++ b/TODO
@@ -25,6 +25,8 @@ can't use arrow keys to navigate in camera view when capslock is enabled
 
 <gibbie> 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
 
index c54452f12874565872042b0e419f74a8168d4473..27a2987de0503532433c0bf1ff0d838311fe2b3d 100644 (file)
@@ -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;