From ff8f6aafb6c30fd9ee0149cf4f700863d8eac26e Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 17 Nov 2012 22:49:49 +0000 Subject: [PATCH] fix bug in coleco bios hookup --- BizHawk.MultiClient/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index ace134f829..c5ff7b982f 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1787,7 +1787,7 @@ namespace BizHawk.MultiClient } break; case "Coleco": - string colbiosPath = PathManager.MakeAbsolutePath(Global.Config.PathCOLBios, "COL"); + string colbiosPath = PathManager.MakeAbsolutePath(Global.Config.PathCOLBios, "Coleco"); ColecoVision c = new ColecoVision(game, rom.RomData, colbiosPath); nextEmulator = c; break;