Skip to content

Commit e7e31d5

Browse files
committed
Improve wording of missing firmware message
1 parent dc67699 commit e7e31d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BizHawk.Client.Common/CoreFileProvider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public string GetUserPath(string sysID, bool temp)
6666
}
6767

6868
private (byte[] FW, string Path) GetFirmwareWithPathOrThrow(FirmwareID id, string? msg)
69-
=> GetFirmwareWithPath(id) ?? throw new MissingFirmwareException($"Couldn't find required firmware {id}. This is fatal{(msg is null ? "." : $": {msg}")}");
69+
=> GetFirmwareWithPath(id) ?? throw new MissingFirmwareException($"Couldn't find required firmware {id}. This prevents the core from loading{(msg is null ? "." : $": {msg}")}");
7070

7171
public byte[]? GetFirmware(FirmwareID id, string? msg = null)
7272
{

0 commit comments

Comments
 (0)