fix dll paths in GPGXDynamic.cs

This commit is contained in:
nattthebear 2015-06-25 17:24:19 -04:00
parent f75b06ce75
commit 98ad258966
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
throw new InvalidOperationException("ROM too big! Did you try to load a CD as a ROM?");
}
elf = new ElfRunner(@"D:\encodes\bizhawksrc\output\dll\gpgx.elf");
elf = new ElfRunner(Path.Combine(comm.CoreFileProvider.DllPath(), "gpgx.elf"));
try
{
gpgx = new LibGPGXDynamic();