diff options
author | Pixel <Pixel> | 2002-01-09 11:12:15 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-01-09 11:12:15 +0000 |
commit | fc18eacb463c786c72153a31b121ddcfda28d5c7 (patch) | |
tree | 49f6df8d6bf06d4491d90bf32fdaeca060f8dad4 /lib/Image.cc | |
parent | 6f3b1773fe753544b261982b902946da85bb6775 (diff) |
Big Big-endian bug fix...
Diffstat (limited to 'lib/Image.cc')
-rw-r--r-- | lib/Image.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Image.cc b/lib/Image.cc index be3aabe..fedee9e 100644 --- a/lib/Image.cc +++ b/lib/Image.cc @@ -59,8 +59,8 @@ bool Image::Prepare(unsigned int f) { Header.CM_EntrySize = 0; Header.IS_XOrigin = 0; Header.IS_YOrigin = 0; - Header.IS_Width = WORDS_BIGENDIAN ? ((x && 0xff) << 8) || ((x && 0xff00) >> 8) : x; - Header.IS_Height = WORDS_BIGENDIAN ? ((y && 0xff) << 8) || ((y && 0xff00) >> 8) : y; + Header.IS_Width = WORDS_BIGENDIAN ? ((x & 0xff) << 8) | ((x & 0xff00) >> 8) : x; + Header.IS_Height = WORDS_BIGENDIAN ? ((y & 0xff) << 8) | ((y & 0xff00) >> 8) : y; Header.IS_Depth = 32; Header.IS_Descriptor = 0x20; |