This commit is contained in:
zeromus 2018-11-30 10:00:26 -06:00
parent 88ce214670
commit 8c7919a1c4
1 changed files with 2 additions and 2 deletions

View File

@ -565,7 +565,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64.NativeApi
result = m64pDebugSetCallbacks(m64pDebugInitCallback, m64pDebugUpdateCallback, null);
// Prepare to start the emulator in a different thread
m64pEmulator = new Thread(ExecuteEmulator);
m64pEmulator = new Thread(ExecuteEmulatorThread);
AttachedCore = this;
}
@ -590,7 +590,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64.NativeApi
/// Starts execution of mupen64plus
/// Does not return until the emulator stops
/// </summary>
private void ExecuteEmulator()
private void ExecuteEmulatorThread()
{
emulator_running = true;
var cb = new StartupCallback(() => m64pStartupComplete.Set());