Commit 8b7039d8 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Fixed the types we want to load at first.

parent 9c20cdfe
......@@ -1068,7 +1068,7 @@ static int codeview_parse_type_table(struct codeview_type_parse* ctp)
* X 1500-150d for V3 types
* 8000-8010 for numeric leafes
*/
if (type->generic.id & 0x8600) continue;
if (!(type->generic.id & 0x8600) || (type->generic.id & 0x0100))
codeview_parse_one_type(ctp, curr_type, type, TRUE);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment