mirror of https://github.com/PCSX2/pcsx2.git
Remove do not show checkboxes from swap/reset dialogs
It didn't make any sense to have them there.
This commit is contained in:
parent
1800770c94
commit
3f39741d0a
|
@ -147,7 +147,7 @@ wxWindowID SwapOrReset_Iso( wxWindow* owner, IScopedCoreThread& core_control, co
|
|||
dialog += dialog.GetCharHeight();
|
||||
dialog += dialog.Heading(_("Do you want to swap discs or boot the new image (via system reset)?"));
|
||||
|
||||
result = pxIssueConfirmation( dialog, MsgButtons().Reset().Cancel().Custom(_("Swap Disc"), "swap"), L"DragDrop.BootSwapIso" );
|
||||
result = pxIssueConfirmation( dialog, MsgButtons().Reset().Cancel().Custom(_("Swap Disc"), "swap"));
|
||||
if( result == wxID_CANCEL )
|
||||
{
|
||||
core_control.AllowResume();
|
||||
|
@ -193,7 +193,7 @@ wxWindowID SwapOrReset_CdvdSrc( wxWindow* owner, CDVD_SourceType newsrc )
|
|||
_("Do you want to swap discs or boot the new image (system reset)?")
|
||||
);
|
||||
|
||||
result = pxIssueConfirmation( dialog, MsgButtons().Reset().Cancel().Custom(_("Swap Disc"), "swap"), L"DragDrop.BootSwapIso" );
|
||||
result = pxIssueConfirmation( dialog, MsgButtons().Reset().Cancel().Custom(_("Swap Disc"), "swap"));
|
||||
|
||||
if( result == wxID_CANCEL )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue