mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix duplicate OK and ENTER button on same message screen
This commit is contained in:
parent
e9e24b0371
commit
fc86a5737a
1 changed files with 1 additions and 8 deletions
|
@ -149,14 +149,9 @@ void PSPMsgDialog::DisplayYesNo()
|
|||
}
|
||||
|
||||
void PSPMsgDialog::DisplayOk()
|
||||
{
|
||||
PPGeDrawText("OK", 250, 150, PPGE_ALIGN_LEFT, 0.5f, CalcFadedColor(0xFF0000FF));
|
||||
}
|
||||
|
||||
void PSPMsgDialog::DisplayEnter()
|
||||
{
|
||||
PPGeDrawImage(okButtonImg, 200, 220, 20, 20, 0, CalcFadedColor(0xFFFFFFFF));
|
||||
PPGeDrawText("Enter", 230, 220, PPGE_ALIGN_LEFT, 0.5f, CalcFadedColor(0xFFFFFFFF));
|
||||
PPGeDrawText("Ok", 230, 220, PPGE_ALIGN_LEFT, 0.5f, CalcFadedColor(0xFFFFFFFF));
|
||||
}
|
||||
|
||||
int PSPMsgDialog::Update()
|
||||
|
@ -199,8 +194,6 @@ int PSPMsgDialog::Update()
|
|||
if(flag & DS_OK)
|
||||
DisplayOk();
|
||||
|
||||
if(flag & DS_VALIDBUTTON)
|
||||
DisplayEnter();
|
||||
if(flag & DS_CANCELBUTTON)
|
||||
DisplayBack();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue