diff options
author | 2022-09-16 17:00:32 +0700 | |
---|---|---|
committer | 2022-09-16 17:00:32 +0700 | |
commit | 1aae44005b59aa712fb60f639ddbb9e8e5e7a357 (patch) | |
tree | 0e5be1f9a8d0b06db8748b55c16aace4928ed7b2 /src | |
parent | 53693a8d7251a2b894b9813035b8e609206b6135 (diff) |
diagnostics: preserve compatibility with old objdump
Diffstat (limited to 'src')
-rw-r--r-- | src/osd/modules/diagnostics/diagnostics_win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/diagnostics/diagnostics_win32.cpp b/src/osd/modules/diagnostics/diagnostics_win32.cpp index b9e863d4eef..5a01cbbf72d 100644 --- a/src/osd/modules/diagnostics/diagnostics_win32.cpp +++ b/src/osd/modules/diagnostics/diagnostics_win32.cpp @@ -507,7 +507,7 @@ bool symbol_manager::parse_sym_line(const char *line, uintptr_t &address, std::s */ // first look for a (ty) entry - const char *type = strstr(line, "(ty 20)"); + const char *type = strstr(line, "(ty "); if (type == nullptr) return false; |