Fix warnings (#484)

Co-authored-by: negativeExponent <negativeExponent@users.noreply.github.com>
This commit is contained in:
negativeExponent
2022-01-29 18:04:20 +08:00
committed by GitHub
parent 03c42f32b3
commit 3923dd51e7
4 changed files with 4 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ static void M403Power(void) {
SetWriteHandler(0x8000, 0xFFFF, M403Write8);
}
static void StateRestore(void) {
static void StateRestore(int version) {
Sync();
}

View File

@@ -55,7 +55,7 @@ static void Mapper434_Power(void) {
SetWriteHandler(0x8000, 0xFFFF, Mapper434_WriteInnerBank);
}
static void StateRestore(void) {
static void StateRestore(int version) {
Mapper434_Sync();
}

View File

@@ -55,7 +55,7 @@ static void Mapper437_Power(void) {
SetWriteHandler(0x8000, 0xFFFF, Mapper437_WriteInnerBank);
}
static void StateRestore(void) {
static void StateRestore(int version) {
Mapper437_Sync();
}

View File

@@ -55,7 +55,7 @@ static void Mapper438_Power(void) {
SetWriteHandler(0x8000, 0xFFFF, Mapper438_WriteLatch);
}
static void StateRestore(void) {
static void StateRestore(int version) {
Mapper438_Sync();
}