Fixed handling of configurations with full stops in the name.
This commit is contained in:
parent
25a332f556
commit
c0048bc24f
2 changed files with 7 additions and 25 deletions
14
src/pc.c
14
src/pc.c
|
|
@ -249,22 +249,20 @@ void initpc(int argc, char *argv[])
|
|||
}
|
||||
else if (!strcasecmp(argv[c], "--config"))
|
||||
{
|
||||
int d;
|
||||
char *ext;
|
||||
|
||||
if ((c+1) == argc)
|
||||
break;
|
||||
strncpy(config_file_default, argv[c+1], 256);
|
||||
strcpy(config_name, get_filename(config_file_default));
|
||||
|
||||
for (d = 0; d < strlen(config_name); d++)
|
||||
ext = get_extension(config_name);
|
||||
if (ext && ext[0])
|
||||
{
|
||||
if (config_name[d] == '.')
|
||||
{
|
||||
config_name[d] = 0;
|
||||
break;
|
||||
}
|
||||
ext--;
|
||||
*ext = 0;
|
||||
}
|
||||
|
||||
|
||||
config_override = 1;
|
||||
c++;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ static void select_config(void* hdlg, char* name)
|
|||
static void config_list_update(void* hdlg)
|
||||
{
|
||||
char s[512];
|
||||
int num, c, p;
|
||||
int num, p;
|
||||
void* h;
|
||||
|
||||
strcpy(s, configs_path);
|
||||
|
|
@ -47,22 +47,6 @@ static void config_list_update(void* hdlg)
|
|||
|
||||
num = wx_sendmessage(h, WX_LB_GETCOUNT, 0, 0);
|
||||
|
||||
for (c = 0; c < num; c++)
|
||||
{
|
||||
char *ext;
|
||||
|
||||
wx_sendmessage(h, WX_LB_GETTEXT, c, (LONG_PARAM)s);
|
||||
ext = get_extension(s);
|
||||
if (ext && ext[0])
|
||||
{
|
||||
ext--;
|
||||
*ext = 0;
|
||||
}
|
||||
|
||||
wx_sendmessage(h, WX_LB_DELETESTRING, c, 0);
|
||||
wx_sendmessage(h, WX_LB_INSERTSTRING, c, (LONG_PARAM)s);
|
||||
}
|
||||
|
||||
if (num > 0)
|
||||
{
|
||||
if (p >= num)
|
||||
|
|
|
|||
Loading…
Reference in a new issue