diff --git a/src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs b/src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs index 7be4cbcf12..aabe23cb3a 100644 --- a/src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs +++ b/src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs @@ -132,6 +132,11 @@ namespace BizHawk.Tests.Testroms.GB new( Console.WriteLine, (s, _) => Console.WriteLine(s), + s => + { + Console.WriteLine(s); + return null; // "Cancel" since I don't think it's expected to hit this while running a testrom (only used in RomLoader at time of writing)... and if this is hit, hopefully cancelling causes the test to fail quickly + }, efp, CoreComm.CorePreferencesFlags.None, oglProvider: null!));