Fix uninitialized variable in PSPMsgDialog

This commit is contained in:
raven02 2013-07-03 08:13:16 +08:00
parent 69d14879b2
commit d28dbffe68

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;