mirror of https://github.com/PCSX2/pcsx2.git
Biostools: remove unused external variable BiosZone
This commit is contained in:
parent
03feacd69a
commit
e9034a1ba1
|
@ -54,7 +54,6 @@ bool NoOSD;
|
|||
bool AllowParams1;
|
||||
bool AllowParams2;
|
||||
std::string BiosDescription;
|
||||
std::string BiosZone;
|
||||
std::string BiosPath;
|
||||
BiosDebugInformation CurrentBiosInformation;
|
||||
|
||||
|
@ -284,7 +283,8 @@ bool LoadBIOS()
|
|||
if (filesize <= 0)
|
||||
return false;
|
||||
|
||||
LoadBiosVersion(fp.get(), BiosVersion, BiosDescription, BiosRegion, BiosZone);
|
||||
std::string zone;
|
||||
LoadBiosVersion(fp.get(), BiosVersion, BiosDescription, BiosRegion, zone);
|
||||
|
||||
if (FileSystem::FSeek64(fp.get(), 0, SEEK_SET) ||
|
||||
std::fread(eeMem->ROM, static_cast<size_t>(std::min<s64>(Ps2MemSize::Rom, filesize)), 1, fp.get()) != 1)
|
||||
|
|
|
@ -38,7 +38,6 @@ extern bool AllowParams1;
|
|||
extern bool AllowParams2;
|
||||
extern u32 BiosChecksum;
|
||||
extern std::string BiosDescription;
|
||||
extern std::string BiosZone;
|
||||
extern std::string BiosPath;
|
||||
extern bool LoadBIOS();
|
||||
extern bool IsBIOS(const char* filename, u32& version, std::string& description, u32& region, std::string& zone);
|
||||
|
|
Loading…
Reference in New Issue