mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-04 01:41:56 +00:00
- fixed: UMAPINFO partime was multiplied by ticrate
https://www.doomworld.com/forum/post/2167749
This commit is contained in:
parent
3197679114
commit
a4fe7b6de2
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ static int ParseStandardProperty(FScanner &scanner, UMapEntry *mape)
|
|||
else if (!pname.CompareNoCase("partime"))
|
||||
{
|
||||
scanner.MustGetValue(false);
|
||||
mape->partime = TICRATE * scanner.Number;
|
||||
mape->partime = scanner.Number;
|
||||
}
|
||||
else if (!pname.CompareNoCase("intertext"))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue