Browse Source

Add missing period at the end of the processor support error message.

Christian Walther 12 years ago
parent
commit
8291ec5ba5
  1. 2
      Sources/Plasma/Apps/plClient/winmain.cpp

2
Sources/Plasma/Apps/plClient/winmain.cpp

@ -1412,7 +1412,7 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nC
// Check to make sure we have a good CPU before getting started // Check to make sure we have a good CPU before getting started
if (!CheckCPU()) if (!CheckCPU())
{ {
plString msg = plString::Format("Your processor does not support all of the features required to play %S", ProductLongName()); plString msg = plString::Format("Your processor does not support all of the features required to play %S.", ProductLongName());
hsMessageBox(msg.c_str(), "Error", hsMessageBoxNormal, hsMessageBoxIconError); hsMessageBox(msg.c_str(), "Error", hsMessageBoxNormal, hsMessageBoxIconError);
return PARABLE_NORMAL_EXIT; return PARABLE_NORMAL_EXIT;
} }

Loading…
Cancel
Save