mirror of
https://github.com/crskycode/GARbro.git
synced 2025-01-11 20:39:29 +08:00
(DifFormat): fixed string.Format call.
This commit is contained in:
parent
9af7f41ef5
commit
4e2af01e36
@ -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))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user