1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 12:03:07 +01:00

Remove Windows check

This commit is contained in:
Gaven Rendell
2021-04-04 13:00:18 -04:00
committed by Ted John
parent 33fa31e6d0
commit 86cf0dc916

View File

@@ -523,10 +523,10 @@ public:
#endif
case SDL_KEYDOWN:
{
#if !(defined(__MACOSX__) || defined(__WINDOWS__))
// Ignore winkey keydowns. Handles edge case where *NIX
// tiling window managers don't eat the keypresses when
// changing workspaces.
#ifndef __MACOSX__
// Ignore winkey keydowns. Handles edge case where tiling
// window managers don't eat the keypresses when changing
// workspaces.
if (SDL_GetModState() & KMOD_GUI)
{
break;