mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 00:15:14 +01:00
Snes9x - Remove S9xSetPalette (#940)
This commit is contained in:
parent
158d09b9d2
commit
c14ff9464a
@ -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)
|
||||
{
|
||||
|
@ -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);
|
||||
|
@ -221,7 +221,6 @@ void S9xEndScreenRefresh (void)
|
||||
{
|
||||
uint32 saved = PPU.CGDATA[0];
|
||||
IPPU.ColorsChanged = FALSE;
|
||||
S9xSetPalette();
|
||||
PPU.CGDATA[0] = saved;
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user