Fix typo in GetRomsPath, was returning GB for PCE/SFX

This commit is contained in:
andres.delikat 2011-08-25 02:52:35 +00:00
parent 8d7c745e56
commit db0fe17933
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ namespace BizHawk.MultiClient
break; break;
case "SFX": case "SFX":
case "PCE": case "PCE":
path = PathManager.MakeAbsolutePath(Global.Config.PathPCEROMs, "GB"); path = PathManager.MakeAbsolutePath(Global.Config.PathPCEROMs, "PCE");
break; break;
case "GB": case "GB":
path = PathManager.MakeAbsolutePath(Global.Config.PathGBROMs, "GB"); path = PathManager.MakeAbsolutePath(Global.Config.PathGBROMs, "GB");