Added place holder function for FCEUD_UpdatePPUView in the GTK/SDL GUI. This fixes GTK GUI build issue that occurred when Qt/SDL PPU Viewer feature was added. GTK GUI will not support the PPU Viewer feature at this time.

This commit is contained in:
Matthew Budd 2020-10-04 23:42:49 -04:00
parent 59d726230d
commit 9241c33c22
1 changed files with 5 additions and 0 deletions

View File

@ -1714,6 +1714,11 @@ void FCEUD_TraceInstruction(uint8 *opcode, int size)
// Place holder to allow for compiling. GTK GUI doesn't support this. Qt Does.
}
void FCEUD_UpdatePPUView(int scanline, int refreshchr)
{
// Place holder to allow for compiling. GTK GUI doesn't support this. Qt Does.
}
static void closeDebuggerWindow (GtkWidget * w, GdkEvent * e, debuggerWin_t * dw)
{
std::list < debuggerWin_t * >::iterator it;