mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #2597 from raven02/patch-7
Fix uninitialized variable in PSPMsgDialog
This commit is contained in:
commit
4f2c7285fd
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ void PSPMsgDialog::DisplayMessage(std::string text, bool hasYesNo)
|
|||
I18NCategory *d = GetI18NCategory("Dialog");
|
||||
float x, w;
|
||||
x = 240.0f;
|
||||
w = w / 2.0f + 16.0f;
|
||||
w = 15.0f;
|
||||
h /= 2.0f;
|
||||
float y2 = y + h2 + 10.0f;
|
||||
h2 += h + 4.0f;
|
||||
|
|
Loading…
Add table
Reference in a new issue