Fix incompatibility of 2.1 with DOS (issue 216)
git-svn-id: svn://pulkomandy.tk/GrafX2/branches/release@1029 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
parent
4ec373dba6
commit
b26a812785
@ -1012,7 +1012,7 @@ void Add_font_or_skin(const char *name)
|
||||
else
|
||||
fname=name;
|
||||
namelength = strlen(fname);
|
||||
if (namelength>=10 && fname[0]!='_' && !strncmp(fname, "skin_", 5)
|
||||
if (namelength>=10 && fname[0]!='_' && !strncasecmp(fname, "skin_", 5)
|
||||
&& (!strcasecmp(fname+namelength-4,".png")
|
||||
|| !strcasecmp(fname+namelength-4,".gif")))
|
||||
{
|
||||
@ -1028,7 +1028,7 @@ void Add_font_or_skin(const char *name)
|
||||
Format_filename(Skin_files_list.First->Full_name, 0)
|
||||
);
|
||||
}
|
||||
else if (namelength>=10 && !strncmp(fname, "font_", 5) && (!strcasecmp(fname+namelength-4,".png")))
|
||||
else if (namelength>=10 && !strncasecmp(fname, "font_", 5) && (!strcasecmp(fname+namelength-4,".png")))
|
||||
{
|
||||
Add_element_to_list(&Font_files_list, name, 0);
|
||||
|
||||
|
||||
14
helpfile.h
14
helpfile.h
@ -379,13 +379,13 @@ static const T_Help_table helptable_credits[] =
|
||||
HELP_TEXT (" blumunkee BDCIron Ced ")
|
||||
HELP_TEXT (" El Topo fallenblood Frost ")
|
||||
HELP_TEXT (" Grimmy Gürkan Sengün Hatch ")
|
||||
HELP_TEXT (" HoraK-FDF iLKke Jamon ")
|
||||
HELP_TEXT (" keito kusma Lord Graga ")
|
||||
HELP_TEXT (" MagerValp mind MooZ ")
|
||||
HELP_TEXT (" the Peach petter richienyhus ")
|
||||
HELP_TEXT (" tape.wyrm TeeEmCee tempest ")
|
||||
HELP_TEXT (" Timo Kurrpa titus^Rab Tobé ")
|
||||
HELP_TEXT (" 00ai99")
|
||||
HELP_TEXT (" HoraK-FDF iLKke Iw2evk ")
|
||||
HELP_TEXT (" Jamon keito kusma ")
|
||||
HELP_TEXT (" Lord Graga MagerValp mind ")
|
||||
HELP_TEXT (" MooZ the Peach petter ")
|
||||
HELP_TEXT (" richienyhus tape.wyrm TeeEmCee ")
|
||||
HELP_TEXT (" tempest Timo Kurrpa titus^Rab ")
|
||||
HELP_TEXT (" Tobé 00ai99")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT (" ... posted the annoying bug reports.")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user