From f1eab3f2c5ce3d9243235f36ca1895e8325bed29 Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Wed, 30 Oct 2013 19:09:05 +0100 Subject: [PATCH] Added architecture fields to the crash report --- indra/newview/llappviewer.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 6be1d5c96..6449b376d 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2625,7 +2625,11 @@ void LLAppViewer::writeSystemInfo() gDebugInfo["ClientInfo"]["MinorVersion"] = gVersionMinor; gDebugInfo["ClientInfo"]["PatchVersion"] = gVersionPatch; gDebugInfo["ClientInfo"]["BuildVersion"] = gVersionBuild; - +#if defined(_WIN64) || defined(__x86_64__) + gDebugInfo["ClientInfo"]["Architecture"] = "x86_64"; +#else + gDebugInfo["ClientInfo"]["Architecture"] = "i386"; +#endif gDebugInfo["CAFilename"] = gDirUtilp->getCAFile(); gDebugInfo["CPUInfo"]["CPUString"] = gSysCPU.getCPUString();