Remove super key workaround

Moonlight can now pass the super key natively
This commit is contained in:
Cameron Gutman
2021-07-06 23:34:11 -05:00
parent 3d81b0fe7a
commit 6d0499b0e3
2 changed files with 2 additions and 6 deletions

View File

@@ -201,10 +201,6 @@ void scroll(input_t &input, int distance) {
}
void keyboard(input_t &input, uint16_t modcode, bool release) {
if(modcode == VK_RMENU) {
modcode = VK_LWIN;
}
INPUT i {};
i.type = INPUT_KEYBOARD;
auto &ki = i.ki;