mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
fixed const inconsistencies
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@14 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
parent
3e31765bd7
commit
02d9607a65
2 changed files with 3 additions and 1 deletions
2
TODO
2
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
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue