(DifFormat): fixed string.Format call.

This commit is contained in:
morkt 2016-03-18 18:34:47 +04:00
parent 9af7f41ef5
commit 4e2af01e36

View File

@ -77,7 +77,7 @@ namespace GameRes.Formats.MnoViolet
return null;
var files = VFS.GetFiles (base_name+".*");
if (!files.Any())
throw new FileNotFoundException (string.Format ("Base image '{0}' not found"), base_name);
throw new FileNotFoundException (string.Format ("Base image '{0}' not found", base_name));
var base_entry = files.First();
using (var input = VFS.OpenSeekableStream (base_entry))
{