From 593266464825971fb9896a03749a012e084b1b40 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 13 Feb 2006 23:15:11 +0000 Subject: [PATCH] Include the architecture in the explicit fields. This is already in the report itself, but not in any place that makes it easy to access for checking patch versions. --- stepmania/src/archutils/Win32/CrashHandlerChild.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/archutils/Win32/CrashHandlerChild.cpp b/stepmania/src/archutils/Win32/CrashHandlerChild.cpp index 3317e31cca..e2cc9d43e3 100644 --- a/stepmania/src/archutils/Win32/CrashHandlerChild.cpp +++ b/stepmania/src/archutils/Win32/CrashHandlerChild.cpp @@ -714,6 +714,7 @@ bool CrashDialog::HandleMessage( UINT msg, WPARAM wParam, LPARAM lParam ) m_pPost = new NetworkPostData; m_pPost->SetData( "ProductName", PRODUCT_NAME ); m_pPost->SetData( "ProductVersion", PRODUCT_VER ); + m_pPost->SetData( "ProductArch", HOOKS->GetArchName().c_str() ); m_pPost->SetData( "Report", m_sCrashReport ); m_pPost->SetData( "Reason", m_CrashData.m_CrashInfo.m_CrashReason );