mirror of
https://github.com/libretro/smsplus-gx.git
synced 2025-01-22 10:01:56 +00:00
6f84b7fa5c
We broke save states along the way when we improperly switched variable types. The end result is also a lot of needless conversions between types. This commit should hopefully address that, and we fixed broken save states.
11 lines
240 B
C
11 lines
240 B
C
|
|
#ifndef FILEIO_H_
|
|
#define FILEIO_H_
|
|
|
|
/* Function prototypes */
|
|
uint8_t *loadFromZipByName(char *archive, const char *filename, uint32_t *filesize);
|
|
int32_t check_zip(const char *filename);
|
|
//int gzsize(gzFile *gd);
|
|
|
|
#endif /* FILEIO_H_ */
|