From b1c5e3500590ba8a13fd47f0ea3690c1ed00e3a0 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 13 Jun 2017 19:01:21 -0500 Subject: [PATCH] bsnes - dont' show profile name in the core name in the status bar --- BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs b/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs index 9afe9fffd1..f5004be398 100644 --- a/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs +++ b/BizHawk.Client.EmuHawk/Extensions/CoreExtensions.cs @@ -69,11 +69,6 @@ namespace BizHawk.Client.EmuHawk.CoreExtensions var str = (!attributes.Released ? "(Experimental) " : "") + attributes.CoreName; - if (core is LibsnesCore) - { - str += " (" + ((LibsnesCore)core).CurrentProfile + ")"; - } - return str; } }