diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 9dd85d5194..32f5c840ff 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -116,7 +116,7 @@ namespace BizHawk.MultiClient //we could background thread this later instead if we wanted to be real clever NES.BootGodDB.GetDatabaseBytes = () => { - using (HawkFile NesCartFile = new HawkFile(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "NesCarts.7z")).BindFirst()) + using (HawkFile NesCartFile = new HawkFile(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "gamedb", "NesCarts.7z")).BindFirst()) return Util.ReadAllBytes(NesCartFile.GetStream()); }; Global.MainForm = this; diff --git a/BizHawk.MultiClient/output/NesCarts.7z b/BizHawk.MultiClient/output/gamedb/NesCarts.7z similarity index 100% rename from BizHawk.MultiClient/output/NesCarts.7z rename to BizHawk.MultiClient/output/gamedb/NesCarts.7z