More Android stub-outs and bug fixes. Fix broken SDL fiber sync.

This commit is contained in:
elasota
2020-10-10 02:42:06 -04:00
parent a2f19f5ccb
commit 5c98783bbb
63 changed files with 1445 additions and 635 deletions

View File

@@ -180,7 +180,7 @@ typedef struct
objectType objects[kMaxRoomObs]; // 24 * 12
} roomType, *roomPtr; // total = 348
typedef struct
struct houseType
{
int16_t version; // 2
int16_t unusedShort; // 2
@@ -198,9 +198,12 @@ typedef struct
int16_t padding;
roomType rooms[1]; // 348 * nRooms
// total = 866 +
static const size_t kBinaryDataSize = 866;
} houseType, *housePtr; // total = 866 +
};
typedef houseType *housePtr;
typedef THandle<houseType> houseHand;