aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorGregory Montoir2005-02-27 04:14:54 +0000
committerGregory Montoir2005-02-27 04:14:54 +0000
commitd5d3bc8e3b04da7e02c633e0a91cafb597f443c5 (patch)
tree377418e5845d6959fdd55511720910e253b58548 /scumm
parentdecda90ffd2751a3fd989875d920e9ebf7fff341 (diff)
downloadscummvm-rg350-d5d3bc8e3b04da7e02c633e0a91cafb597f443c5.tar.gz
scummvm-rg350-d5d3bc8e3b04da7e02c633e0a91cafb597f443c5.tar.bz2
scummvm-rg350-d5d3bc8e3b04da7e02c633e0a91cafb597f443c5.zip
correction, WIZH tag is LE
svn-id: r16948
Diffstat (limited to 'scumm')
-rw-r--r--scumm/wiz_he.cpp6
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;