MultiHawk: Make unreachable code in Mainform ctor reachable again.
This corrects a merge error from0b4fc8b6a5
that was incorrectly fixed in20fb060c65
.
This commit is contained in:
parent
0960ca8a89
commit
e5f85bbd8f
|
@ -74,6 +74,7 @@ namespace BizHawk.Client.MultiHawk
|
||||||
return NesCartFile
|
return NesCartFile
|
||||||
.GetStream()
|
.GetStream()
|
||||||
.ReadAllBytes();
|
.ReadAllBytes();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Database.LoadDatabase(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "gamedb", "gamedb.txt"));
|
Database.LoadDatabase(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "gamedb", "gamedb.txt"));
|
||||||
|
@ -104,7 +105,6 @@ namespace BizHawk.Client.MultiHawk
|
||||||
{
|
{
|
||||||
Location = new Point(Global.Config.MainWndx, Global.Config.MainWndy);
|
Location = new Point(Global.Config.MainWndx, Global.Config.MainWndy);
|
||||||
}
|
}
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make this an actual property, set it when loading a Rom, and pass it dialogs, etc
|
// TODO: make this an actual property, set it when loading a Rom, and pass it dialogs, etc
|
||||||
|
|
Loading…
Reference in New Issue