From 12c76168e80cd50df73c480c1dce1e0dd0e0e2bc Mon Sep 17 00:00:00 2001 From: Souryo Date: Sun, 23 Aug 2015 10:05:00 -0400 Subject: [PATCH] Added ROM name in title bar --- GUI.NET/Forms/frmMain.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GUI.NET/Forms/frmMain.cs b/GUI.NET/Forms/frmMain.cs index 2b1ff5a9..fdd723f6 100644 --- a/GUI.NET/Forms/frmMain.cs +++ b/GUI.NET/Forms/frmMain.cs @@ -87,6 +87,7 @@ namespace Mesen.GUI.Forms void _notifListener_OnNotification(InteropEmu.NotificationEventArgs e) { if(e.NotificationType == InteropEmu.ConsoleNotificationType.GameLoaded) { + this.Text = "Mesen - " + System.IO.Path.GetFileNameWithoutExtension(InteropEmu.GetROMPath()); CheatInfo.ApplyCheats(); InitializeStateMenu(mnuSaveState, true); InitializeStateMenu(mnuLoadState, false);