Pump SDL2 version for macOS, fixes initialization slowdown reported in libsdl-org/SDL#13427.

This commit is contained in:
Martín Lucas Golini
2025-10-05 15:12:17 -03:00
parent dc8007d355
commit 92bb0c9d75
2 changed files with 2 additions and 3 deletions

View File

@@ -333,8 +333,8 @@ jobs:
- name: Install Dependencies
run: |
brew install bash create-dmg premake p7zip
curl -OL https://github.com/libsdl-org/SDL/releases/download/release-2.32.8/SDL2-2.32.8.dmg
hdiutil attach SDL2-2.32.8.dmg
curl -OL https://github.com/libsdl-org/SDL/releases/download/release-2.32.10/SDL2-2.32.10.dmg
hdiutil attach SDL2-2.32.10.dmg
sudo cp -r /Volumes/SDL2/SDL2.framework /Library/Frameworks/
hdiutil detach /Volumes/SDL2
- name: Build

View File

@@ -26,7 +26,6 @@ WindowBackendSDL2::WindowBackendSDL2() : WindowBackendLibrary() {
#if SDL_VERSION_ATLEAST( 2, 0, 22 )
SDL_SetHint( SDL_HINT_IME_SUPPORT_EXTENDED_TEXT, "1" );
#endif
SDL_SetHint( SDL_HINT_MAC_BACKGROUND_APP, "1" );
}
WindowBackendSDL2::~WindowBackendSDL2() {