mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix (flag & (DS_OK | DS_VALIDBUTTON))
This commit is contained in:
parent
fc86a5737a
commit
643efb3cb9
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ int PSPMsgDialog::Update()
|
|||
|
||||
if(flag & DS_YESNO)
|
||||
DisplayYesNo();
|
||||
if(flag & DS_OK)
|
||||
if (flag & (DS_OK | DS_VALIDBUTTON))
|
||||
DisplayOk();
|
||||
|
||||
if(flag & DS_CANCELBUTTON)
|
||||
|
|
Loading…
Add table
Reference in a new issue