hack to fix a bkm to bk2 bug

This commit is contained in:
adelikat 2015-06-08 22:49:30 +00:00
parent 4f4b26d10e
commit 7a090edcb0
1 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,13 @@ namespace BizHawk.Client.Common
{
var bkm = new BkmMovie(path);
bkm.Load();
// Hackery to fix how things used to work
if (bkm.SystemID == "GBC")
{
bkm.SystemID = "GB";
}
return bkm.ToBk2();
}