Fix variables not being re-resolved on Load()
Some checks failed
debian-build / build (push) Has been cancelled
Push to master / Check Formatting 🔍 (push) Has been cancelled
Push to master / Build Project 🧱 (push) Has been cancelled
Push to master / Create Release 🛫 (push) Has been cancelled

This commit is contained in:
WarmUpTill
2025-04-17 11:32:36 +02:00
committed by WarmUpTill
parent 70bbc7cdac
commit c73542a3cc

View File

@@ -42,6 +42,7 @@ void StringVariable::operator=(const char *value)
void StringVariable::Load(obs_data_t *obj, const char *name)
{
_value = obs_data_get_string(obj, name);
_lastResolve = {};
Resolve();
}