[CPU] Fix XexModule::FindSaveRest not finding functions properly

This commit is contained in:
emoose
2018-11-01 15:50:56 +00:00
parent 3b584a5f1c
commit bbb5c938ec
4 changed files with 21 additions and 18 deletions

View File

@@ -514,8 +514,8 @@ struct xex2_header {
struct xex2_page_descriptor {
union {
struct {
uint32_t info : 4;
uint32_t size : 28;
xex2_section_type info : 4;
uint32_t page_count : 28;
};
xe::be<uint32_t> value; // 0x0
};