From 1b0963dd760f4780dcd61f31706fb41fdb4331e9 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 25 Dec 2002 03:48:27 +0000 Subject: added (broken) cursor support for V8; enabled bomp drawing svn-id: r6113 --- scumm/gfx.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'scumm/gfx.h') diff --git a/scumm/gfx.h b/scumm/gfx.h index ead63a8ea4..a908646e66 100644 --- a/scumm/gfx.h +++ b/scumm/gfx.h @@ -83,8 +83,16 @@ struct BlastObject { /* BlastObjects to draw */ #endif struct BompHeader { /* Bomp header */ - uint16 unk; - uint16 width, height; + union { + struct { + uint16 unk; + uint16 width, height; + } GCC_PACK old; + + struct { + uint32 width, height; + } GCC_PACK v8; + } GCC_PACK; } GCC_PACK; #if !defined(__GNUC__) -- cgit v1.2.3