summaryrefslogtreecommitdiffstats
path: root/o3d/breakpad/win/exception_handler_win32.cc
diff options
context:
space:
mode:
Diffstat (limited to 'o3d/breakpad/win/exception_handler_win32.cc')
-rw-r--r--o3d/breakpad/win/exception_handler_win32.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/o3d/breakpad/win/exception_handler_win32.cc b/o3d/breakpad/win/exception_handler_win32.cc
index 96851f0..70a2607 100644
--- a/o3d/breakpad/win/exception_handler_win32.cc
+++ b/o3d/breakpad/win/exception_handler_win32.cc
@@ -148,13 +148,15 @@ static bool MinidumpCallback(const wchar_t *minidump_folder,
HRESULT result = SHGetFolderPath(
NULL,
- CSIDL_APPDATA,
+ O3D_PLUGIN_INSTALLDIR_CSIDL,
NULL,
0,
reporterPath);
if (result == 0) {
- PathAppend(reporterPath, _T("Google\\O3D\\reporter.exe"));
+ PathAppend(reporterPath,
+ _T(O3D_PLUGIN_VENDOR_DIRECTORY) _T("\\")
+ _T(O3D_PLUGIN_PRODUCT_DIRECTORY) _T("\\reporter.exe"));
}
if (PathFileExists(reporterPath)) {