From d997eb6c036853b73299472b628c61833582be5f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 20 Oct 2002 03:56:09 +0000 Subject: [PATCH] Move commas into a place real, living humans expect them to be. --- stepmania/src/Crash.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/stepmania/src/Crash.cpp b/stepmania/src/Crash.cpp index a054947a7a..571b2df6dd 100644 --- a/stepmania/src/Crash.cpp +++ b/stepmania/src/Crash.cpp @@ -1327,16 +1327,16 @@ static void DoSave(const EXCEPTION_POINTERS *pExc) { ovi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); if (GetVersionEx(&ovi)) { - Report(NULL, hFile, "Windows %d.%d (Win%s build %d) [%s]" - ,ovi.dwMajorVersion - ,ovi.dwMinorVersion - ,ovi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS + Report(NULL, hFile, "Windows %d.%d (Win%s build %d) [%s]", + ovi.dwMajorVersion, + ovi.dwMinorVersion, + ovi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS ? (ovi.dwMinorVersion>0 ? "98" : "95") : ovi.dwPlatformId == VER_PLATFORM_WIN32_NT ? (ovi.dwMajorVersion >= 5 ? "2000" : "NT") - : "?" - ,ovi.dwBuildNumber & 0xffff - ,ovi.szCSDVersion); + : "?", + ovi.dwBuildNumber & 0xffff, + ovi.szCSDVersion); } Report(NULL, hFile, "");