Snes9x - Remove S9xSetPalette (#940)

This commit is contained in:
bladeoner 2020-08-08 18:28:59 +02:00 committed by GitHub
parent 158d09b9d2
commit c14ff9464a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 13 deletions

View File

@ -168,11 +168,6 @@ bool8 S9xContinueUpdate(int Width, int Height)
return (TRUE);
}
void S9xSetPalette()
{
return;
}
/*** Input functions ***/
void S9xHandlePortCommand(s9xcommand_t cmd, int16 data1, int16 data2)
{

View File

@ -40,7 +40,6 @@ void S9xInitDisplay (int, char **);
void S9xDeinitDisplay (void);
void S9xTextMode (void);
void S9xGraphicsMode (void);
void S9xSetPalette (void);
void S9xToggleSoundChannel (int);
bool8 S9xOpenSnapshotFile (const char *, bool8, STREAM *);
void S9xCloseSnapshotFile (STREAM);

View File

@ -221,7 +221,6 @@ void S9xEndScreenRefresh (void)
{
uint32 saved = PPU.CGDATA[0];
IPPU.ColorsChanged = FALSE;
S9xSetPalette();
PPU.CGDATA[0] = saved;
}

View File

@ -216,7 +216,6 @@ bool8 S9xInitUpdate (void);
bool8 S9xDeinitUpdate (int, int);
bool8 S9xContinueUpdate (int, int);
void S9xReRefresh (void);
void S9xSetPalette (void);
void S9xSyncSpeed (void);
// called instead of S9xDisplayString if set to non-NULL

View File

@ -214,11 +214,6 @@ bool8 S9xContinueUpdate(int Width, int Height)
return (TRUE);
}
void S9xSetPalette()
{
return;
}
/*** Input functions ***/
void S9xHandlePortCommand(s9xcommand_t cmd, int16 data1, int16 data2)
{