Fix error of not being able to build (#9)

This commit is contained in:
mn1712trungson 2024-01-29 08:25:00 +07:00 committed by GitHub
parent 5b6afa14e6
commit 7ac89ea4dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 4 deletions

View File

@ -23,8 +23,7 @@ using System.Collections.Generic;
using System.IO;
using System.Threading;
using Ekona;
using static SF_FEATHER.CGx;
using static SF_FEATHER.SCx;
using SF_FEATHER;
namespace SF_FEATHER
{

View File

@ -24,7 +24,7 @@ using System.IO;
using System.Text;
using Ekona;
using Ekona.Images;
using static SF_FEATHER.CGT;
using SF_FEATHER;
namespace SF_FEATHER
{
@ -45,7 +45,15 @@ namespace SF_FEATHER
{
return true;
}
return false;
else if (gameCode == "AS7J")
{
return true;
}
else if (gameCode == "AS7E")
{
return true;
}
else { return false; }
}
public Format Get_Format(sFile file, byte[] mSeed)