fixed const inconsistencies

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@14 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
spog 2006-02-19 19:31:17 +00:00
parent 3e31765bd7
commit 02d9607a65
2 changed files with 3 additions and 1 deletions

2
TODO
View File

@ -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

View 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;