oops, we've got to stub FCEUD_FlushTrace on these other platforms

This commit is contained in:
zeromus 2022-04-26 14:08:37 -04:00
parent def5768b9e
commit b912004f69
3 changed files with 19 additions and 0 deletions

View File

@ -1291,6 +1291,13 @@ int FCEUD_TraceLoggerRunning(void)
{ {
return logging; return logging;
} }
void FCEUD_FlushTrace()
{
//not needed, since it's doing something in a thread, i guess.
//seems weird that there's no way to rendezvous with it
}
//---------------------------------------------------- //----------------------------------------------------
//todo: really speed this up //todo: really speed this up
void FCEUD_TraceInstruction(uint8 *opcode, int size) void FCEUD_TraceInstruction(uint8 *opcode, int size)

View File

@ -1709,6 +1709,11 @@ void FCEUD_DebugBreakpoint(int bp_num)
} }
} }
void FCEUD_FlushTrace()
{
// Place holder to allow for compiling. GTK GUI doesn't support this. Qt Does.
}
void FCEUD_TraceInstruction(uint8 *opcode, int size) void FCEUD_TraceInstruction(uint8 *opcode, int size)
{ {
// Place holder to allow for compiling. GTK GUI doesn't support this. Qt Does. // Place holder to allow for compiling. GTK GUI doesn't support this. Qt Does.

View File

@ -526,6 +526,13 @@ void FCEUD_DebugBreakpoint() {
return; return;
} }
/**
* Unimplemented.
*/
void FCEUD_FlushTrace()
{
}
/** /**
* Unimplemented. * Unimplemented.
*/ */