[macOS] Process joypad input directly in the embedded process.

This commit is contained in:
Pāvels Nadtočajevs 2025-08-14 11:51:59 +03:00
parent cb850f7719
commit b9bafbd2ca
No known key found for this signature in database
GPG key ID: 8413210218EF35D2
8 changed files with 12 additions and 71 deletions

View file

@ -1263,6 +1263,11 @@ void OS_MacOS_Embedded::run() {
@try {
ds->process_events();
#ifdef SDL_ENABLED
if (joypad_sdl) {
joypad_sdl->process_events();
}
#endif
if (Main::iteration()) {
break;
}