mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-24 00:03:11 +01:00
Fix boolean warning
This commit is contained in:
@@ -155,7 +155,7 @@ public:
|
||||
bool HasFocus() override
|
||||
{
|
||||
uint32 windowFlags = GetWindowFlags();
|
||||
return (windowFlags & SDL_WINDOW_INPUT_FOCUS);
|
||||
return (windowFlags & SDL_WINDOW_INPUT_FOCUS) != 0;
|
||||
}
|
||||
|
||||
bool IsMinimised() override
|
||||
|
||||
Reference in New Issue
Block a user