From d5d2e7d412587617db4d1d5914eb9fd6cb552e50 Mon Sep 17 00:00:00 2001 From: James Groom Date: Sun, 24 Feb 2019 15:39:53 +1000 Subject: [PATCH] Fix typo --- BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs b/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs index 53044c6d87..d47de0714f 100644 --- a/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs +++ b/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs @@ -281,7 +281,7 @@ namespace BizHawk.Emulation.DiscSystem.CUE } else { - Error("Unknown cue file type. Since it's likely an unsupported compression, this is an error: ", Path.GetFileName(choice)); + Error($"Unknown cue file type. Since it's likely an unsupported compression, this is an error: {Path.GetFileName(choice)}"); cfi.Type = CompiledCueFileType.Unknown; } @@ -497,4 +497,4 @@ namespace BizHawk.Emulation.DiscSystem.CUE } //class CompileCueJob -} //namespace BizHawk.Emulation.DiscSystem \ No newline at end of file +} //namespace BizHawk.Emulation.DiscSystem