fix rom drag&drop

This commit is contained in:
zeromus 2015-11-08 02:35:44 -06:00
parent b745d5776a
commit bce9b6f33d
1 changed files with 3 additions and 1 deletions

View File

@ -2735,7 +2735,9 @@ namespace BizHawk.Client.EmuHawk
}
else
{
LoadRom(filePaths[0]);
var args = new LoadRomArgs();
args.OpenAdvanced = new OpenAdvanced_OpenRom { Path = filePaths[0] };
LoadRom(filePaths[0],args);
}
}