From bcaf44c511efaad9d803dde9b0fdbb046498c66f Mon Sep 17 00:00:00 2001 From: João Silva Date: Sun, 18 Jun 2017 16:16:19 +0100 Subject: Support for savestate versioning. Plenty of cleanups. --- source/spc7110.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/spc7110.c') diff --git a/source/spc7110.c b/source/spc7110.c index ffaf35f..fb8f280 100644 --- a/source/spc7110.c +++ b/source/spc7110.c @@ -46,7 +46,7 @@ void (*Copy7110)() = NULL; //size and offset of the pack data //offset and size of reads from pack -typedef struct SPC7110DecompressionLocationStruct +typedef struct { uint32_t offset; uint32_t size; @@ -55,7 +55,7 @@ typedef struct SPC7110DecompressionLocationStruct } Data7110; //this maps an index.bin table to the decompression pack -typedef struct SPC7110DecompressionIndexStruct +typedef struct { int32_t table; bool is_file; @@ -63,7 +63,7 @@ typedef struct SPC7110DecompressionIndexStruct } Index7110; //this contains all the data for the decompression pack. -typedef struct SPC7110DecompressionPackStructure +typedef struct { uint8_t* binfiles[MAX_TABLES]; Index7110 tableEnts[MAX_TABLES]; -- cgit v1.2.3