From 8291ec5ba5828516394131902114d6c30eab1542 Mon Sep 17 00:00:00 2001 From: Christian Walther Date: Fri, 20 Apr 2012 21:57:27 +0200 Subject: [PATCH] Add missing period at the end of the processor support error message. --- Sources/Plasma/Apps/plClient/winmain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/Apps/plClient/winmain.cpp b/Sources/Plasma/Apps/plClient/winmain.cpp index 91c05798..9870afde 100644 --- a/Sources/Plasma/Apps/plClient/winmain.cpp +++ b/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 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); return PARABLE_NORMAL_EXIT; }