aboutsummaryrefslogtreecommitdiff
path: root/scumm.h
diff options
context:
space:
mode:
authorLudvig Strigeus2001-10-17 07:12:37 +0000
committerLudvig Strigeus2001-10-17 07:12:37 +0000
commite3efa056d2e0c738fed24de830f9ae7f13c66ad9 (patch)
tree7af528d74a94ac9eeeb933ae969117cb3c4bcbaa /scumm.h
parent5979ecfdd553f2cf00445de9e15e3f053ee815c1 (diff)
downloadscummvm-rg350-e3efa056d2e0c738fed24de830f9ae7f13c66ad9.tar.gz
scummvm-rg350-e3efa056d2e0c738fed24de830f9ae7f13c66ad9.tar.bz2
scummvm-rg350-e3efa056d2e0c738fed24de830f9ae7f13c66ad9.zip
fixed nasty signed/unsigned bug
svn-id: r3437
Diffstat (limited to 'scumm.h')
-rw-r--r--scumm.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm.h b/scumm.h
index e01d0bb117..0363a4af92 100644
--- a/scumm.h
+++ b/scumm.h
@@ -17,6 +17,9 @@
*
* Change Log:
* $Log$
+ * Revision 1.10 2001/10/17 07:12:37 strigeus
+ * fixed nasty signed/unsigned bug
+ *
* Revision 1.9 2001/10/16 20:31:27 strigeus
* misc fixes
*
@@ -100,7 +103,7 @@ struct VirtScreen {
uint16 width,height;
uint16 size;
byte alloctwobuffers;
- byte fourlinesextra;
+ byte scrollable;
uint16 xstart;
byte tdirty[40];
byte bdirty[40];