Handle edge case where the callback returns false while registering a variable

This commit is contained in:
Lactozilla 2023-11-01 16:16:59 -03:00
parent 01922d94f1
commit 075dab924c

View file

@ -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)