avoid using literal backslash in gamedb path loading
This commit is contained in:
parent
16b1f28212
commit
79731827f4
|
@ -123,7 +123,7 @@ namespace BizHawk.MultiClient
|
|||
Global.CoreInputComm = new CoreInputComm();
|
||||
SyncCoreInputComm();
|
||||
|
||||
Database.LoadDatabase(Path.Combine(PathManager.GetExeDirectoryAbsolute(), @"gamedb\gamedb.txt"));
|
||||
Database.LoadDatabase(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "gamedb", "gamedb.txt"));
|
||||
|
||||
SyncPresentationMode();
|
||||
|
||||
|
|
Loading…
Reference in New Issue