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:
terminx 2013-04-29 15:13:48 +00:00
parent 46ccf59c74
commit 75294401c4

View file

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