Compare commits

..

1 Commits

Author SHA1 Message Date
WarmUpTill
cb87f1cc36 Fix file condition always returning false 2023-01-18 07:49:21 -08:00

View File

@@ -159,7 +159,7 @@ bool MacroConditionFile::CheckCondition()
SetVariableValue(ret ? "true" : "false");
}
return false;
return ret;
}
bool MacroConditionFile::Save(obs_data_t *obj) const