ASYLUM: big endian fix
Ticket 13081
This commit is contained in:
parent
17c27cdea8
commit
b751e47f42
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ struct ResourceEntry {
|
|||
if (data == NULL)
|
||||
error("[ResourceEntry::getData] Invalid data");
|
||||
|
||||
return READ_UINT32(data + off);
|
||||
return READ_LE_UINT32(data + off);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue