mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix message dialog oversize
This commit is contained in:
parent
45b6670310
commit
e1587744e4
1 changed files with 3 additions and 3 deletions
|
@ -53,9 +53,9 @@ void PSPDialog::EndDraw()
|
|||
|
||||
void PSPDialog::DisplayMessage(std::string text)
|
||||
{
|
||||
PPGeDrawRect(30, 50, 450, 51, CalcFadedColor(0xFFFFFFFF));
|
||||
PPGeDrawRect(30, 180, 450, 181, CalcFadedColor(0xFFFFFFFF));
|
||||
PPGeDrawText(text.c_str(), 40, 60, PPGE_ALIGN_LEFT, 0.5f, CalcFadedColor(0xFFFFFFFF));
|
||||
PPGeDrawRect(30, 30, 450, 31, CalcFadedColor(0xFFFFFFFF));
|
||||
PPGeDrawRect(30, 200, 450, 201, CalcFadedColor(0xFFFFFFFF));
|
||||
PPGeDrawText(text.c_str(), 40, 50, PPGE_ALIGN_LEFT, 0.55f, CalcFadedColor(0xFFFFFFFF));
|
||||
}
|
||||
|
||||
int PSPDialog::Shutdown()
|
||||
|
|
Loading…
Add table
Reference in a new issue