mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-12 12:18:35 -05:00
Fix typos
This commit is contained in:
@@ -22,7 +22,7 @@ void DurationModifier::Save(obs_data_t *obj, const char *condName,
|
||||
void DurationModifier::Load(obs_data_t *obj, const char *condName,
|
||||
const char *duration)
|
||||
{
|
||||
// For backwards compatability check if duration value exist without
|
||||
// For backwards compatibility check if duration value exist without
|
||||
// time constraint condition - if so assume DurationCondition::MORE
|
||||
if (!obs_data_has_user_value(obj, condName) &&
|
||||
obs_data_has_user_value(obj, duration)) {
|
||||
@@ -105,7 +105,7 @@ bool MacroCondition::Load(obs_data_t *obj)
|
||||
_duration.Load(durObj);
|
||||
obs_data_release(durObj);
|
||||
} else {
|
||||
// For backwards compatability
|
||||
// For backwards compatibility
|
||||
_duration.Load(obj);
|
||||
}
|
||||
return true;
|
||||
|
||||
@@ -24,7 +24,7 @@ public:
|
||||
|
||||
private:
|
||||
// TODO: Remove in future version
|
||||
// Used for backwards compatability to older settings versions
|
||||
// Used for backwards compatibility to older settings versions
|
||||
void LoadFallback(obs_data_t *obj, const char *name);
|
||||
|
||||
OBSWeakSource _source;
|
||||
|
||||
Reference in New Issue
Block a user