mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-07-08 19:51:35 +00:00
Fix string in breakpad()
This commit is contained in:
parent
adb49b7c7d
commit
6f6993255a
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ void breakpad(std::string pathToDump)
|
||||||
/*FilterCallback*/ 0,
|
/*FilterCallback*/ 0,
|
||||||
DumpCallback,
|
DumpCallback,
|
||||||
/*context*/
|
/*context*/
|
||||||
0,
|
google_breakpad::ExceptionHandler::HANDLER_ALL,
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
#else
|
#else
|
||||||
|
@ -151,7 +151,7 @@ int main(int argc, char *argv[])
|
||||||
Settings::Manager mgr;
|
Settings::Manager mgr;
|
||||||
Files::ConfigurationManager cfgMgr;
|
Files::ConfigurationManager cfgMgr;
|
||||||
|
|
||||||
breakpad(boost::filesystem::path(cfgMgr.getLogPath()).c_str());
|
breakpad(boost::filesystem::path(cfgMgr.getLogPath()).string());
|
||||||
|
|
||||||
loadSettings(mgr);
|
loadSettings(mgr);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue