refactor: remove redundant cast

This commit is contained in:
sithlord48
2025-06-19 18:27:37 -04:00
committed by Nick Bolton
parent b29c5b1bb2
commit 2110411c6d

View File

@ -787,7 +787,7 @@ void ServerProxy::setOptions()
}
if (id != kKeyModifierIDNull) {
m_modifierTranslationTable[id] = static_cast<KeyModifierID>(options[i + 1]);
m_modifierTranslationTable[id] = options[i + 1];
LOG((CLOG_DEBUG1 "modifier %d mapped to %d", id, m_modifierTranslationTable[id]));
}
}