Skip to content

Commit

Permalink
MorphOS: fix SDL_WINDOW_BORDERLESS
Browse files Browse the repository at this point in the history
  • Loading branch information
BeWorld2018 committed Jan 25, 2024
1 parent 220d55d commit 2c53e38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/morphos/SDL_moswindow.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,8 +489,8 @@ MOS_ShowWindow_Internal(SDL_VideoDevice *device, SDL_Window * window)
vd->CustomScreen ? WA_CustomScreen : TAG_IGNORE, vd->CustomScreen,
vd->CustomScreen ? TAG_IGNORE : WA_PubScreen, vd->WScreen,
data->region ? WA_TransparentRegion : TAG_IGNORE, data->region,
WA_ScreenTitle, data->window_title,
fullscreen ? TAG_IGNORE : WA_Title, data->window_title,
(window->flags & SDL_WINDOW_BORDERLESS || fullscreen) ? TAG_IGNORE : WA_ScreenTitle, data->window_title,
(window->flags & SDL_WINDOW_BORDERLESS || fullscreen) ? TAG_IGNORE : WA_Title, data->window_title,
WA_UserPort, &vd->WinPort,
WA_AutoAdjust, TRUE,
WA_Opacity, opacity_value,
Expand Down

0 comments on commit 2c53e38

Please sign in to comment.