mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- last commit was broken. :(
SVN r3672 (trunk)
This commit is contained in:
parent
e28ecdda50
commit
171066388f
1 changed files with 2 additions and 2 deletions
|
@ -509,7 +509,7 @@ static void ParseOptionValue(FScanner &sc)
|
|||
FOptionValues **pOld = OptionValues.CheckKey(optname);
|
||||
if (pOld != NULL && *pOld != NULL)
|
||||
{
|
||||
sc.ScriptError("Redefinition of option value set '%s'", optname.GetChars())
|
||||
sc.ScriptError("Redefinition of option value set '%s'", optname.GetChars());
|
||||
}
|
||||
OptionValues[optname] = val;
|
||||
}
|
||||
|
@ -542,7 +542,7 @@ static void ParseOptionString(FScanner &sc)
|
|||
FOptionValues **pOld = OptionValues.CheckKey(optname);
|
||||
if (pOld != NULL && *pOld != NULL)
|
||||
{
|
||||
sc.ScriptError("Redefinition of option value set '%s'", optname.GetChars())
|
||||
sc.ScriptError("Redefinition of option value set '%s'", optname.GetChars());
|
||||
}
|
||||
OptionValues[optname] = val;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue