From 72ef291ac062be187927c6e156d28809813a71a4 Mon Sep 17 00:00:00 2001 From: beirich Date: Mon, 17 Jan 2011 03:23:53 +0000 Subject: [PATCH] wired up Recent Roms click event --- BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt | 3 ++- BizHawk.MultiClient/MainForm.cs | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt b/BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt index bae94f3eb8..31c625ce6a 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt +++ b/BizHawk.Emulation/Consoles/Sega/SMS/Compat.txt @@ -8,4 +8,5 @@ ======= Game Gear compatibility issues ======= * Outrun has raster effect on the wrong line. I've been able to modify interrupt code to - fix it, but so far, not without breaking other games. \ No newline at end of file + fix it, but so far, not without breaking other games. +* GG Turrican homebrew not starting correctly \ No newline at end of file diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index a7e7881eab..09803b2749 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -609,7 +609,11 @@ namespace BizHawk.MultiClient { for (int x = 0; x < RecentRoms.Length(); x++) { - recentROMToolStripMenuItem.DropDownItems.Add(RecentRoms.GetRecentFileByPosition(x)); //TODO: truncate this to a nice size + string path = RecentRoms.GetRecentFileByPosition(x); + var item = new ToolStripMenuItem(); + item.Text = path; + item.Click += (o, ev) => LoadRom(path); + recentROMToolStripMenuItem.DropDownItems.Add(item); //TODO: truncate this to a nice size } } recentROMToolStripMenuItem.DropDownItems.Add("Clear");