mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-24 10:45:47 +01:00
Add MD_CPU_ARCHITECTURE_AMD64 as valid system type when cpu type is MD_CONTEXT_X86
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@230 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
bbd9b47291
commit
299c816021
@ -727,7 +727,8 @@ bool MinidumpContext::CheckAgainstSystemInfo(u_int32_t context_cpu_type) {
|
||||
switch (context_cpu_type) {
|
||||
case MD_CONTEXT_X86:
|
||||
if (system_info_cpu_type == MD_CPU_ARCHITECTURE_X86 ||
|
||||
system_info_cpu_type == MD_CPU_ARCHITECTURE_X86_WIN64) {
|
||||
system_info_cpu_type == MD_CPU_ARCHITECTURE_X86_WIN64 ||
|
||||
system_info_cpu_type == MD_CPU_ARCHITECTURE_AMD64) {
|
||||
return_value = true;
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user