Skip to content

Commit

Permalink
Launch SDL3 preferences program asynchronously
Browse files Browse the repository at this point in the history
  • Loading branch information
capehill committed Jan 26, 2025
1 parent 05c751b commit ed9bab2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/video/amigaos4/SDL_os4events.c
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,11 @@ OS4_ShowAboutWindow(struct MyIntuiMessage * imsg)
static void
OS4_LaunchPrefs(void)
{
const int32 error = IDOS->System("SDL3", TAG_DONE);
const int32 error = IDOS->SystemTags("SDL3",
SYS_Asynch, TRUE,
SYS_Input, ZERO,
SYS_Output, ZERO,
TAG_DONE);
if (error != 0) {
dprintf("System() returned %ld\n", error);
}
Expand Down

0 comments on commit ed9bab2

Please sign in to comment.