mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 09:20:51 +00:00
Well then, I sure fucked that last commit up didn't I
git-svn-id: https://svn.eduke32.com/eduke32@3816 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e3dedb19ee
commit
4e9cf9722a
1 changed files with 2 additions and 2 deletions
|
@ -5625,7 +5625,7 @@ repeatcase:
|
||||||
while (*textptr == ' ' || *textptr == '\t') textptr++;
|
while (*textptr == ' ' || *textptr == '\t') textptr++;
|
||||||
|
|
||||||
// cheap hack, 0.99 doesn't have the 3D Realms time
|
// cheap hack, 0.99 doesn't have the 3D Realms time
|
||||||
if (*(textptr+2) == ':' && g_scriptVersion == 10)
|
if (*(textptr+2) == ':')
|
||||||
{
|
{
|
||||||
MapInfo[j *MAXLEVELS+k].designertime =
|
MapInfo[j *MAXLEVELS+k].designertime =
|
||||||
(((*(textptr+0)-'0')*10+(*(textptr+1)-'0'))*REALGAMETICSPERSEC*60)+
|
(((*(textptr+0)-'0')*10+(*(textptr+1)-'0'))*REALGAMETICSPERSEC*60)+
|
||||||
|
@ -5634,7 +5634,7 @@ repeatcase:
|
||||||
textptr += 5;
|
textptr += 5;
|
||||||
while (*textptr == ' ' || *textptr == '\t') textptr++;
|
while (*textptr == ' ' || *textptr == '\t') textptr++;
|
||||||
}
|
}
|
||||||
else g_scriptVersion = 9;
|
else if (g_scriptVersion == 10) g_scriptVersion = 9;
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue