Fix warnings

This commit is contained in:
WarmUpTill
2021-11-01 18:45:45 +01:00
committed by WarmUpTill
parent 6f1cd3cbcc
commit f955c07bda
4 changed files with 6 additions and 8 deletions

View File

@@ -141,7 +141,7 @@ obs_key_combination keysToOBSKeycombo(const std::vector<HotkeyType> &keys)
return combo;
}
for (int i = 0; i < keys.size() - 1; i++) {
for (uint32_t i = 0; i < keys.size() - 1; i++) {
switch (keys[i]) {
case HotkeyType::Key_Shift_L:
combo.modifiers |= INTERACT_SHIFT_KEY;