From 3c69e1a32c6673cabef2cdb35b1d013f35c637aa Mon Sep 17 00:00:00 2001 From: MattNL Date: Sun, 2 Oct 2022 03:58:51 -0400 Subject: [PATCH] small adjustment to bink exception string --- PCK-Studio/Classes/FileTypes/Bink.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Classes/FileTypes/Bink.cs b/PCK-Studio/Classes/FileTypes/Bink.cs index 73861182..018f0ecf 100644 --- a/PCK-Studio/Classes/FileTypes/Bink.cs +++ b/PCK-Studio/Classes/FileTypes/Bink.cs @@ -110,7 +110,7 @@ namespace PckStudio.Classes bool flag2 = !(a == ".wav"); if (flag2) { - throw new Exception("File type not valid. To use MP3 or other audio formats, convert to wav format before using tool"); + throw new Exception("File type not valid. To use MP3 or other audio formats, convert to wav format before using this tool"); } result = "WAV"; }