Skip to content

Commit d8bca6c

Browse files
committed
Updated submodules
- AudioCodecs, MixerX, SDL2
1 parent e35fea9 commit d8bca6c

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

Engine/android-project/moondust/src/main/java/org/libsdl/app/SDLActivity.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
public class SDLActivity extends Activity implements View.OnSystemUiVisibilityChangeListener {
6161
private static final String TAG = "SDL";
6262
private static final int SDL_MAJOR_VERSION = 2;
63-
private static final int SDL_MINOR_VERSION = 30;
64-
private static final int SDL_MICRO_VERSION = 10;
63+
private static final int SDL_MINOR_VERSION = 32;
64+
private static final int SDL_MICRO_VERSION = 4;
6565
/*
6666
// Display InputType.SOURCE/CLASS of events and devices
6767
//
@@ -790,6 +790,9 @@ public void handleMessage(Message msg) {
790790
window.clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
791791
SDLActivity.mFullscreenModeActive = false;
792792
}
793+
if (Build.VERSION.SDK_INT >= 28 /* Android 9 (Pie) */) {
794+
window.getAttributes().layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
795+
}
793796
}
794797
} else {
795798
Log.e(TAG, "error handling message, getContext() returned no Activity");

_Libs/AudioCodecs

Submodule AudioCodecs updated 1209 files

_Libs/SDL_Mixer_X

0 commit comments

Comments
 (0)