diff options
-rw-r--r-- | sword1/resman.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sword1/resman.cpp b/sword1/resman.cpp index 2e8e4dfe0c..41665cc5df 100644 --- a/sword1/resman.cpp +++ b/sword1/resman.cpp @@ -308,9 +308,9 @@ void ResMan::openScriptResourceBigEndian(uint32 id) { MemHandle *handle = resHandle(id); // uint32 totSize = handle->size; Header *head = (Header*)handle->data; - head->comp_length = READ_LE_UINT32(&head->comp_length); - head->decomp_length = READ_LE_UINT32(&head->decomp_length); - head->version = READ_LE_UINT16(&head->version); + head->comp_length = FROM_LE_32(head->comp_length); + head->decomp_length = FROM_LE_32(head->decomp_length); + head->version = FROM_LE_16(head->version); uint32 *data = (uint32*)((uint8*)handle->data + sizeof(Header)); uint32 size = handle->size - sizeof(Header); if (size & 3) |