HX-DOS builds do not have tinyfd_msessageBox

This commit is contained in:
Jonathan Campbell 2020-11-01 06:19:18 -08:00
parent 490024b165
commit 6115b59921

View File

@ -8826,6 +8826,7 @@ bool use_save_file_menu_callback(DOSBoxMenu * const menu, DOSBoxMenu::item * con
}
bool show_save_state_menu_callback(DOSBoxMenu * const menu, DOSBoxMenu::item * const menuitem) {
#if !defined(HX_DOS)
(void)menu;//UNUSED
(void)menuitem;//UNUSED
MAPPER_ReleaseAllKeys();
@ -8834,6 +8835,7 @@ bool show_save_state_menu_callback(DOSBoxMenu * const menu, DOSBoxMenu::item * c
tinyfd_messageBox("Saved state information", message.c_str(), "ok","info", 1);
MAPPER_ReleaseAllKeys();
GFX_LosingFocus();
#endif
return true;
}