Fixed build warnings for gcc

This commit is contained in:
Robert 2021-10-29 22:33:34 +02:00
parent cabc0ae639
commit a579793bd1
8 changed files with 45 additions and 37 deletions

View file

@ -17,11 +17,11 @@ struct Mapper000
struct Mapper000* createMapper000(Byte prg_rom_size, Byte chr_rom_size, FILE* fp);
void destroyMapper000(struct Mapper000* mapper);
Byte Mapper000_ReadCPU(struct Mapper000* mapper, Word address);
Byte Mapper000_ReadPPU(struct Mapper000* mapper, Word address);
void Mapper000_WriteCPU(struct Mapper000* mapper, Word address, Byte value);
void Mapper000_WritePPU(struct Mapper000* mapper, Word address, Byte value);
Byte Mapper000_ReadCPU(void* mapper, Word address);
Byte Mapper000_ReadPPU(void* mapper, Word address);
void Mapper000_WriteCPU(void* mapper, Word address, Byte value);
void Mapper000_WritePPU(void* mapper, Word address, Byte value);
void Mapper000_GetPatternTableTexture(struct Mapper000* mapper, SDL_Texture* texture, int index);
void Mapper000_GetPatternTableTexture(void* mapper, SDL_Texture* texture, int index);
#endif _MAPPER_000_
#endif // _MAPPER_000_