Merge pull request #2597 from raven02/patch-7

Fix uninitialized variable in PSPMsgDialog
This commit is contained in:
Henrik Rydgård 2013-07-03 06:33:03 -07:00
commit 4f2c7285fd

View file

@ -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;