From 44d284acd47f5ff17fb5753d1df7250490272ed5 Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 11 Jul 2017 21:05:14 -0500 Subject: [PATCH] tooltips for main firmwares view --- BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs b/BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs index 957907624e..ba00b45213 100644 --- a/BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs +++ b/BizHawk.Client.EmuHawk/config/FirmwaresConfig.cs @@ -236,7 +236,7 @@ namespace BizHawk.Client.EmuHawk if (ri == null) { lvi.ImageIndex = idMissing; - lvi.ToolTipText = "Missing!"; + lvi.ToolTipText = "No file bound for this firmware!"; } else { @@ -252,13 +252,13 @@ namespace BizHawk.Client.EmuHawk if (ri.KnownFirmwareFile == null) { lvi.ImageIndex = idUnsure; - lvi.ToolTipText = null; + lvi.ToolTipText = "You've bound a custom choice here. Hope you know what you're doing."; lvi.SubItems[4].Text = "-custom-"; } else { lvi.ImageIndex = idOk; - lvi.ToolTipText = "Good!"; + lvi.ToolTipText = "Good! This file has been bound to some kind of a decent choice"; lvi.SubItems[4].Text = ri.KnownFirmwareFile.Description; } @@ -278,12 +278,16 @@ namespace BizHawk.Client.EmuHawk if (ri.Missing) { lvi.ImageIndex = idMissing; - lvi.ToolTipText = "Missing!"; + lvi.ToolTipText = "The file that's specified is missing!"; } // if the user specified a known firmware file but its for some other firmware, it was probably a mistake. mark it as suspicious if (ri.KnownMismatching) + { lvi.ImageIndex = idUnsure; + lvi.ToolTipText = "You've manually specified a firmware file, and we're sure it's wrong. Hope you know what you're doing."; + } + lvi.SubItems[5].Text = path;