aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/crashhandler.h
diff options
context:
space:
mode:
authorEmma Miler <emma.pi@protonmail.com>2022-11-15 00:47:32 +0100
committerGitHub <noreply@github.com>2022-11-15 00:47:32 +0100
commit5cd63250b697f0b49ff1bb787672cf06bbce27a6 (patch)
treee3e1f1cee713079bdd6f392ae9ee04a731d8f535 /NorthstarDLL/crashhandler.h
parent0c6d1f4e79d31de6fde4979a72afacdd6d13ca60 (diff)
downloadNorthstarLauncher-5cd63250b697f0b49ff1bb787672cf06bbce27a6.tar.gz
NorthstarLauncher-5cd63250b697f0b49ff1bb787672cf06bbce27a6.zip
Fix slow keyvalues building (#331)
* Fix slow keyvalues building * Update crashhandler.cpp * Fix it
Diffstat (limited to 'NorthstarDLL/crashhandler.h')
-rw-r--r--NorthstarDLL/crashhandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/NorthstarDLL/crashhandler.h b/NorthstarDLL/crashhandler.h
index 990457cc..4d8a59ce 100644
--- a/NorthstarDLL/crashhandler.h
+++ b/NorthstarDLL/crashhandler.h
@@ -14,8 +14,8 @@ struct ExceptionLog
{
std::string cause;
HMODULE crashedModule;
- PEXCEPTION_RECORD exceptionRecord;
- PCONTEXT contextRecord;
+ EXCEPTION_RECORD exceptionRecord;
+ CONTEXT contextRecord;
std::vector<BacktraceModule> trace;
std::vector<std::string> registerDump;