Make `Sameboy` ctor public so testroms project can use it
fixes 9528a2030
This commit is contained in:
parent
c90fcbbd54
commit
379eeeeed8
|
@ -102,7 +102,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.Sameboy
|
|||
_stateBuf = new byte[LibSameboy.sameboy_statelen(SameboyState)];
|
||||
}
|
||||
|
||||
private Sameboy(CoreComm comm, GameInfo game, byte[] file, SameboySettings settings, SameboySyncSettings syncSettings, bool deterministic)
|
||||
public Sameboy(
|
||||
CoreComm comm,
|
||||
GameInfo game,
|
||||
byte[] file,
|
||||
SameboySettings settings,
|
||||
SameboySyncSettings syncSettings,
|
||||
bool deterministic)
|
||||
{
|
||||
_serviceProvider = new BasicServiceProvider(this);
|
||||
|
||||
|
|
Loading…
Reference in New Issue