From 9241c33c221b3f38f6db23e755ee891b470f1a89 Mon Sep 17 00:00:00 2001 From: Matthew Budd Date: Sun, 4 Oct 2020 23:42:49 -0400 Subject: [PATCH] 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. --- src/drivers/sdl/debugger.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/drivers/sdl/debugger.cpp b/src/drivers/sdl/debugger.cpp index ea23deea..54d348cc 100644 --- a/src/drivers/sdl/debugger.cpp +++ b/src/drivers/sdl/debugger.cpp @@ -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;