Update `DummyFrontend` for `CoreComm` signature change

fixes ddd14d527
This commit is contained in:
YoshiRulz 2025-02-04 17:30:27 +10:00
parent 756c79fb60
commit 924b5c7fae
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 5 additions and 0 deletions

View File

@ -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!));