Skip to content

Commit

Permalink
Don't set WM_EX_TOPMOST for Direct3D FULLSCREEN windows.
Browse files Browse the repository at this point in the history
This was erroneously left out from fd9b819

Fixes #1623
  • Loading branch information
SiegeLordEx authored and SiegeLord committed Feb 19, 2025
1 parent 26d0bf6 commit e481add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/win/wwindow.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ HWND _al_win_create_faux_fullscreen_window(LPCTSTR devname, ALLEGRO_DISPLAY *dis
_al_vector_init(&win_display->msg_callbacks, sizeof(ALLEGRO_DISPLAY_WIN_CALLBACK));

style = WS_VISIBLE;
ex_style = WS_EX_TOPMOST;
ex_style = 0;

window_title = _twin_utf8_to_tchar(al_get_new_window_title());
my_window = CreateWindowEx(ex_style,
Expand Down

0 comments on commit e481add

Please sign in to comment.