Merge pull request #340 from negativeExponent/master

Fix incompatible pointer type warning
This commit is contained in:
Autechre
2020-03-14 17:46:02 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -288,7 +288,7 @@ VSUNIENTRY VSUniGames[] =
{ 0 }
};
void FCEU_VSUniCheck(uint64 md5partial, int *MapperNo, uint8 *Mirroring) {
void FCEU_VSUniCheck(uint64 md5partial, int *MapperNo, int *Mirroring) {
VSUNIENTRY *vs = VSUniGames;
while (vs->name) {

View File

@@ -2,7 +2,7 @@
#define _FCEU_VSUNI_H
void FCEU_VSUniPower(void);
void FCEU_VSUniCheck(uint64 md5partial, int *, uint8 *);
void FCEU_VSUniCheck(uint64 md5partial, int *, int *);
void FCEU_VSUniDraw(uint8 *XBuf);
void FCEU_VSUniToggleDIP(int); /* For movies and netplay */