Osk: Fix fullscreen check.

See previous 21bf41e, failed to add this change because of UTF-16.
This commit is contained in:
Unknown W. Brackets 2022-05-29 11:16:56 -07:00
parent 1b2b443a03
commit df4017baba

View File

@ -943,7 +943,7 @@ int PSPOskDialog::Update(int animSpeed) {
// Windows: Fall back to the OSK/continue normally if we're in fullscreen.
// The dialog box doesn't work right if in fullscreen.
if (System_GetPropertyBool(SYSPROP_HAS_KEYBOARD)) {
if (g_Config.bBypassOSKWithKeyboard && !g_Config.bFullScreen)
if (g_Config.bBypassOSKWithKeyboard && !g_Config.UseFullScreen())
return NativeKeyboard();
}
#endif