mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-28 20:26:47 -05:00
Fix word "unknown"
This commit is contained in:
committed by
WarmUpTill
parent
66f3c74cf3
commit
3c8f5088d3
@@ -79,7 +79,7 @@ bool Macro::CeckMatch()
|
||||
break;
|
||||
default:
|
||||
blog(LOG_WARNING,
|
||||
"ignoring unkown condition check for '%s'",
|
||||
"ignoring unknown condition check for '%s'",
|
||||
_name.c_str());
|
||||
break;
|
||||
}
|
||||
@@ -249,7 +249,7 @@ bool Macro::Load(obs_data_t *obj)
|
||||
setValidLogic(c, root, _name);
|
||||
} else {
|
||||
blog(LOG_WARNING,
|
||||
"discarding condition entry with unkown id (%s) for macro %s",
|
||||
"discarding condition entry with unknown id (%s) for macro %s",
|
||||
id.c_str(), _name.c_str());
|
||||
}
|
||||
|
||||
@@ -273,7 +273,7 @@ bool Macro::Load(obs_data_t *obj)
|
||||
_actions.back()->Load(array_obj);
|
||||
} else {
|
||||
blog(LOG_WARNING,
|
||||
"discarding action entry with unkown id (%s) for macro %s",
|
||||
"discarding action entry with unknown id (%s) for macro %s",
|
||||
id.c_str(), _name.c_str());
|
||||
}
|
||||
|
||||
|
||||
@@ -149,7 +149,7 @@ void SceneTrigger::logMatch()
|
||||
actionName = "STOP VIRTUAL CAMERA";
|
||||
break;
|
||||
default:
|
||||
actionName = "UNKOWN";
|
||||
actionName = "UNKNOWN";
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -273,7 +273,7 @@ void SceneTrigger::performAction()
|
||||
bool stop = triggerAction == sceneTriggerAction::STOP_SWITCHER;
|
||||
t = std::thread(statusThread, duration, stop);
|
||||
} else {
|
||||
blog(LOG_WARNING, "ignoring unkown action '%d'",
|
||||
blog(LOG_WARNING, "ignoring unknown action '%d'",
|
||||
static_cast<int>(triggerAction));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user