Fix check for Android version in whether to display "ignore camera notch when centering" Fixes #13774
This commit is contained in:
parent
73da378efd
commit
381313ec9e
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ void GameSettingsScreen::CreateViews() {
|
||||||
|
|
||||||
#if PPSSPP_PLATFORM(ANDROID)
|
#if PPSSPP_PLATFORM(ANDROID)
|
||||||
// Hide insets option if no insets, or OS too old.
|
// Hide insets option if no insets, or OS too old.
|
||||||
if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 29 &&
|
if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 28 &&
|
||||||
(System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_LEFT) != 0.0f ||
|
(System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_LEFT) != 0.0f ||
|
||||||
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_TOP) != 0.0f ||
|
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_TOP) != 0.0f ||
|
||||||
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_RIGHT) != 0.0f ||
|
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_RIGHT) != 0.0f ||
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue