From 5aa69da8efc79fcd5252811de17b62957a9bab5d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 13 Sep 2003 17:36:31 +0000 Subject: convert run lists in the res manager svn-id: r10233 --- sword2/resman.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'sword2/resman.cpp') diff --git a/sword2/resman.cpp b/sword2/resman.cpp index b06621986a..20d0bf0741 100644 --- a/sword2/resman.cpp +++ b/sword2/resman.cpp @@ -397,8 +397,14 @@ static void convertEndian(uint8 *file, uint32 len) { break; case PARALLAX_FILE_null: break; - case RUN_LIST: + case RUN_LIST: { + uint32 *list = (uint32 *)file; + while (*list) { + SWAP32(*list); + list++; + } break; + } case TEXT_FILE: { _textHeader *textHeader = (_textHeader *)file; SWAP32(textHeader->noOfLines); -- cgit v1.2.3