From 924b5c7fae9e27987b159297a1906e5fd656b341 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 4 Feb 2025 17:30:27 +1000 Subject: [PATCH] Update `DummyFrontend` for `CoreComm` signature change fixes ddd14d527 --- src/BizHawk.Tests.Testroms.GB/DummyFrontend.cs | 5 +++++ 1 file changed, 5 insertions(+) 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!));