mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-06-03 10:21:48 +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"))
|
else if (!pname.CompareNoCase("partime"))
|
||||||
{
|
{
|
||||||
scanner.MustGetValue(false);
|
scanner.MustGetValue(false);
|
||||||
mape->partime = TICRATE * scanner.Number;
|
mape->partime = scanner.Number;
|
||||||
}
|
}
|
||||||
else if (!pname.CompareNoCase("intertext"))
|
else if (!pname.CompareNoCase("intertext"))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue