mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 09:56:30 +00:00
XEEN: Fix Space tiles not appearing in the map & minimap
This commit is contained in:
parent
37b9de6d25
commit
4586cee0ab
@ -165,16 +165,16 @@ enum SurfaceType {
|
||||
|
||||
union MazeWallLayers {
|
||||
struct MazeWallIndoors {
|
||||
int _wallNorth : 4;
|
||||
int _wallEast : 4;
|
||||
int _wallSouth : 4;
|
||||
int _wallWest : 4;
|
||||
uint _wallNorth : 4;
|
||||
uint _wallEast : 4;
|
||||
uint _wallSouth : 4;
|
||||
uint _wallWest : 4;
|
||||
} _indoors;
|
||||
struct MazeWallOutdoors {
|
||||
SurfaceType _surfaceId : 4;
|
||||
int _iMiddle : 4;
|
||||
int _iTop : 4;
|
||||
int _iOverlay : 4;
|
||||
uint _surfaceId : 4; // SurfaceType, but needs to be unsigned
|
||||
uint _iMiddle : 4;
|
||||
uint _iTop : 4;
|
||||
uint _iOverlay : 4;
|
||||
} _outdoors;
|
||||
uint16 _data;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user