aboutsummaryrefslogtreecommitdiff
path: root/sword2
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-12-10 13:14:50 +0000
committerTorbjörn Andersson2003-12-10 13:14:50 +0000
commit7153d77024e7b0091046aa27f02864824c694e60 (patch)
tree77dac6060eecf067b59eecd80e81c9524079d2dc /sword2
parenta2221c88e9f993cad4493ad8cd521ede581c266d (diff)
downloadscummvm-rg350-7153d77024e7b0091046aa27f02864824c694e60.tar.gz
scummvm-rg350-7153d77024e7b0091046aa27f02864824c694e60.tar.bz2
scummvm-rg350-7153d77024e7b0091046aa27f02864824c694e60.zip
Restored some relevant information to a comment that was removed by my
previous commit. svn-id: r11551
Diffstat (limited to 'sword2')
-rw-r--r--sword2/driver/driver96.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sword2/driver/driver96.h b/sword2/driver/driver96.h
index 48c0ca9c26..8c35ef9ed1 100644
--- a/sword2/driver/driver96.h
+++ b/sword2/driver/driver96.h
@@ -89,6 +89,8 @@ enum {
// Sprite defines
enum {
+ // This is the low byte part of the sprite type.
+
RDSPR_TRANS = 0x0001,
RDSPR_BLEND = 0x0004,
RDSPR_FLIP = 0x0008,
@@ -97,8 +99,8 @@ enum {
RDSPR_NOCOMPRESSION = 0x0040,
RDSPR_EDGEBLEND = 0x0080, // Unused
- // This defines what type of compression is used, as long as
- // RDSPR_NOCOMPRESSION is not defined.
+ // This is the high byte part of the sprite type, which defines what
+ // type of compression is used. Unless RDSPR_NOCOMPRESSION is set.
RDSPR_RLE16 = 0x0000,
RDSPR_RLE256 = 0x0100,