mirror of
https://github.com/crskycode/GARbro.git
synced 2025-01-12 04:49:32 +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;
|
return null;
|
||||||
var files = VFS.GetFiles (base_name+".*");
|
var files = VFS.GetFiles (base_name+".*");
|
||||||
if (!files.Any())
|
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();
|
var base_entry = files.First();
|
||||||
using (var input = VFS.OpenSeekableStream (base_entry))
|
using (var input = VFS.OpenSeekableStream (base_entry))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user