diff options
| author | Gregory Montoir | 2005-02-27 04:14:54 +0000 |
|---|---|---|
| committer | Gregory Montoir | 2005-02-27 04:14:54 +0000 |
| commit | d5d3bc8e3b04da7e02c633e0a91cafb597f443c5 (patch) | |
| tree | 377418e5845d6959fdd55511720910e253b58548 | |
| parent | decda90ffd2751a3fd989875d920e9ebf7fff341 (diff) | |
| download | scummvm-rg350-d5d3bc8e3b04da7e02c633e0a91cafb597f443c5.tar.gz scummvm-rg350-d5d3bc8e3b04da7e02c633e0a91cafb597f443c5.tar.bz2 scummvm-rg350-d5d3bc8e3b04da7e02c633e0a91cafb597f443c5.zip | |
correction, WIZH tag is LE
svn-id: r16948
| -rw-r--r-- | scumm/wiz_he.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp index cc303f4f51..0400e5d481 100644 --- a/scumm/wiz_he.cpp +++ b/scumm/wiz_he.cpp @@ -1292,9 +1292,9 @@ void ScummEngine_v90he::createWizEmptyImage(const WizParameters *params) { WRITE_BE_UINT32(res_data, res_size); res_data += 4; WRITE_BE_UINT32(res_data, 'WIZH'); res_data += 4; WRITE_BE_UINT32(res_data, 0x14); res_data += 4; - WRITE_BE_UINT32(res_data, 0); res_data += 4; - WRITE_BE_UINT32(res_data, img_w); res_data += 4; - WRITE_BE_UINT32(res_data, img_h); res_data += 4; + WRITE_LE_UINT32(res_data, 0); res_data += 4; + WRITE_LE_UINT32(res_data, img_w); res_data += 4; + WRITE_LE_UINT32(res_data, img_h); res_data += 4; if (flags & 1) { WRITE_BE_UINT32(res_data, 'RGBS'); res_data += 4; WRITE_BE_UINT32(res_data, 0x308); res_data += 4; |
