mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
My love/hate relationship with git stash is quickly becoming a hate/hate relationship. :p
git-svn-id: https://svn.eduke32.com/eduke32@3714 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
46ccf59c74
commit
75294401c4
1 changed files with 8 additions and 2 deletions
|
@ -9917,10 +9917,16 @@ int32_t loadboard(char *filename, char flags, vec3_t *dapos, int16_t *daang, int
|
|||
p = Bstrrchr(fn, '.');
|
||||
|
||||
if (!p)
|
||||
{
|
||||
Bstrcat(fn, ".cfg");
|
||||
OSD_Exec(fn);
|
||||
else
|
||||
{
|
||||
p[1]='c';
|
||||
p[2]='f';
|
||||
p[3]='g';
|
||||
p[4]=0;
|
||||
}
|
||||
|
||||
OSD_Exec(fn);
|
||||
}
|
||||
|
||||
return finish_loadboard(dapos, dacursectnum, numsprites, myflags);
|
||||
|
|
Loading…
Reference in a new issue