fix windows build

This commit is contained in:
Christopher A. Mosher 2022-12-11 19:41:04 -05:00
parent fee69a814c
commit f0923c00dd
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ static int askSave() {
nullptr,
"You have unsaved changes to your tape image.\nDo you want to SAVE them?",
"Save changes",
wxYES_NO|wxCANCEL|wxCANCEL_DEFAULT};
(long)(wxYES_NO|wxCANCEL|wxCANCEL_DEFAULT)};
return dlg->ShowModal();
}

View File

@ -488,7 +488,7 @@ static int askSave() {
nullptr,
"You have unsaved changes to your floppy disk images.\nDo you want to SAVE them?",
"Save changes",
wxYES_NO|wxCANCEL|wxCANCEL_DEFAULT};
(long)(wxYES_NO|wxCANCEL|wxCANCEL_DEFAULT)};
return dlg->ShowModal();
}