mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 20:35:32 -07:00
Fix fullscreen notification "don't ask again", closes #948
This commit is contained in:
@@ -790,8 +790,10 @@ plat_setfullscreen(int on)
|
||||
if (on && video_fullscreen) return;
|
||||
|
||||
if (on && video_fullscreen_first) {
|
||||
if (ui_msgbox_header(MBX_INFO | MBX_DONTASK, (wchar_t *) IDS_2134, (wchar_t *) IDS_2052) == 10)
|
||||
if (ui_msgbox_header(MBX_INFO | MBX_DONTASK, (wchar_t *) IDS_2134, (wchar_t *) IDS_2052) == 10) {
|
||||
video_fullscreen_first = 0;
|
||||
config_save();
|
||||
}
|
||||
}
|
||||
|
||||
/* OK, claim the video. */
|
||||
|
||||
Reference in New Issue
Block a user