mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-04 17:02:24 +00:00
Handle edge case where the callback returns false while registering a variable
This commit is contained in:
parent
01922d94f1
commit
075dab924c
1 changed files with 23 additions and 1 deletions
|
@ -1451,7 +1451,29 @@ static void Setvalue(consvar_t *var, const char *valstr, boolean stealth)
|
|||
if (var->flags & CV_CALL && var->can_change && !stealth)
|
||||
{
|
||||
if (!var->can_change(valstr))
|
||||
return;
|
||||
{
|
||||
// The callback refused the default value on register. How naughty...
|
||||
// So we just use some fallback value.
|
||||
if (var->string == NULL)
|
||||
{
|
||||
if (var->PossibleValue)
|
||||
{
|
||||
// Use PossibleValue
|
||||
valstr = var->PossibleValue[0].strvalue;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Else, use an empty string
|
||||
valstr = "";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Callback returned false, and the game is not registering this variable,
|
||||
// so we can return safely.
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (var->PossibleValue)
|
||||
|
|
Loading…
Reference in a new issue