aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2011-11-26 20:18:56 +0100
committerWillem Jan Palenstijn2011-11-26 20:18:56 +0100
commit139a868d375abbb93c71a557a2b943f4d4d0c82c (patch)
tree7a7ed6ec142bd52878bb147b4d887f3f93be6663
parent3739e69e48384feb3c46a43b8c230eb21209883f (diff)
downloadscummvm-rg350-139a868d375abbb93c71a557a2b943f4d4d0c82c.tar.gz
scummvm-rg350-139a868d375abbb93c71a557a2b943f4d4d0c82c.tar.bz2
scummvm-rg350-139a868d375abbb93c71a557a2b943f4d4d0c82c.zip
DREAMWEB: Fix Room struct
Room::name is a zero terminated 8.3 filename, so 13 bytes long.
-rw-r--r--engines/dreamweb/structs.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/dreamweb/structs.h b/engines/dreamweb/structs.h
index 8b0030158d..50736120c8 100644
--- a/engines/dreamweb/structs.h
+++ b/engines/dreamweb/structs.h
@@ -183,10 +183,7 @@ struct People {
};
struct Room {
- char name[10];
- uint8 b10;
- uint8 b11;
- uint8 b12;
+ char name[13];
uint8 roomsSample;
uint8 b14;
uint8 mapX;