Update `CoreComm` init in testroms project to new signature
fixes 76a29d356
This commit is contained in:
parent
379eeeeed8
commit
f2880d8325
|
@ -198,7 +198,7 @@ namespace BizHawk.Tests.Testroms.GB
|
||||||
var (core, biosWaitDuration) = init(
|
var (core, biosWaitDuration) = init(
|
||||||
efp,
|
efp,
|
||||||
_config,
|
_config,
|
||||||
new(Console.WriteLine, Console.WriteLine, efp, CoreComm.CorePreferencesFlags.None));
|
new(Console.WriteLine, (s, _) => Console.WriteLine(s), efp, CoreComm.CorePreferencesFlags.None));
|
||||||
Core = core;
|
Core = core;
|
||||||
_controller = new(Core.ControllerDefinition);
|
_controller = new(Core.ControllerDefinition);
|
||||||
FrameAdvanceTo(biosWaitDuration);
|
FrameAdvanceTo(biosWaitDuration);
|
||||||
|
|
Loading…
Reference in New Issue