From e7e31d5792b71ae40693ebcc0be653d39b517423 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 13 May 2025 01:39:14 +1000 Subject: [PATCH] Improve wording of missing firmware message --- src/BizHawk.Client.Common/CoreFileProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/CoreFileProvider.cs b/src/BizHawk.Client.Common/CoreFileProvider.cs index ab117de395..07e58614e3 100644 --- a/src/BizHawk.Client.Common/CoreFileProvider.cs +++ b/src/BizHawk.Client.Common/CoreFileProvider.cs @@ -66,7 +66,7 @@ namespace BizHawk.Client.Common } private (byte[] FW, string Path) GetFirmwareWithPathOrThrow(FirmwareID id, string? msg) - => GetFirmwareWithPath(id) ?? throw new MissingFirmwareException($"Couldn't find required firmware {id}. This is fatal{(msg is null ? "." : $": {msg}")}"); + => GetFirmwareWithPath(id) ?? throw new MissingFirmwareException($"Couldn't find required firmware {id}. This prevents the core from loading{(msg is null ? "." : $": {msg}")}"); public byte[]? GetFirmware(FirmwareID id, string? msg = null) {