mirror of
https://github.com/holub/mame
synced 2025-07-01 08:18:59 +03:00
diagnostics: ignore all but type 0x20 symbols
This commit is contained in:
parent
f7445c878b
commit
0055a33e81
@ -507,7 +507,10 @@ bool symbol_manager::parse_sym_line(const char *line, uintptr_t &address, std::s
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// first look for a (ty) entry
|
// first look for a (ty) entry
|
||||||
const char *type = strstr(line, "(ty ");
|
char *type = strstr(line, "(ty 20)");
|
||||||
|
if (type == nullptr)
|
||||||
|
type = strstr(line, "(ty 20)");
|
||||||
|
|
||||||
if (type == nullptr)
|
if (type == nullptr)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user