move NesCarts.7z to gamedb subfolder

This commit is contained in:
goyuken 2012-10-09 20:33:14 +00:00
parent 79731827f4
commit 9417eac96c
2 changed files with 1 additions and 1 deletions

View File

@ -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;