Skip to content
This repository has been archived by the owner on Feb 10, 2024. It is now read-only.

Commit

Permalink
added the missing argument for SDL_AddVideoDisplay on MorphOS
Browse files Browse the repository at this point in the history
  • Loading branch information
BSzili committed Oct 17, 2020
1 parent c80522d commit 92732d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/amiga/SDL_amigamodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ AMIGA_InitModes(_THIS)
display.driverdata = modedata;
display.name = (char *)getv(mon, MA_MonitorName);

SDL_AddVideoDisplay(&display);
SDL_AddVideoDisplay(&display, SDL_FALSE);
dispcount++;

mode.driverdata = NULL;
Expand Down Expand Up @@ -240,7 +240,7 @@ AMIGA_InitModes(_THIS)

D("[%s] Add video display '%s'\n", __FUNCTION__, display.name);

SDL_AddVideoDisplay(&display);
SDL_AddVideoDisplay(&display, SDL_FALSE);
dispcount++;
}
}
Expand Down

0 comments on commit 92732d8

Please sign in to comment.