mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- fixed: UMAPINFO partime was multiplied by ticrate
https://www.doomworld.com/forum/post/2167749
This commit is contained in:
parent
bda49d0bf7
commit
5f8b313446
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,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