Make the surface_metadata struct match the original

This commit is contained in:
Clownacy 2019-08-13 19:48:18 +01:00
parent aa6174b3f2
commit e708dc3a7d

View file

@ -42,11 +42,11 @@ static FontObject *gFont;
// This doesn't exist in the Linux port, so none of these symbol names are accurate // This doesn't exist in the Linux port, so none of these symbol names are accurate
static struct static struct
{ {
SurfaceType type; char name[20];
unsigned int width; unsigned int width;
unsigned int height; unsigned int height;
SurfaceType type;
BOOL bSystem; // Basically a 'do not regenerate' flag BOOL bSystem; // Basically a 'do not regenerate' flag
char name[0x20];
} surface_metadata[SURFACE_ID_MAX]; } surface_metadata[SURFACE_ID_MAX];
#define FRAMERATE 20 #define FRAMERATE 20