Fixed Visual Studio warning 4702

This commit is contained in:
Sam Lantinga 2023-03-30 10:48:50 -07:00
parent e2f560d4bb
commit 28d687aae0
1 changed files with 2 additions and 1 deletions

View File

@ -318,8 +318,9 @@ static BOOL WIN_DeclareDPIAwarePerMonitor(_THIS)
/* Older OS: fall back to system DPI aware */
return WIN_DeclareDPIAwareSystem(_this);
}
#endif
#else
return FALSE;
#endif
}
static BOOL WIN_DeclareDPIAwarePerMonitorV2(_THIS)