From 9417eac96c17723750f35d7de09b34cc16dc1ff5 Mon Sep 17 00:00:00 2001 From: goyuken Date: Tue, 9 Oct 2012 20:33:14 +0000 Subject: [PATCH] move NesCarts.7z to gamedb subfolder --- BizHawk.MultiClient/MainForm.cs | 2 +- BizHawk.MultiClient/output/{ => gamedb}/NesCarts.7z | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename BizHawk.MultiClient/output/{ => gamedb}/NesCarts.7z (100%) 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