mirror of https://github.com/PCSX2/pcsx2.git
Remove a size check that prevented fps2bios to load.
Also enabling code comments again, since the release is out now we can live with roo -1'in everything :p git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4614 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
efe1e665ee
commit
8d5165551e
|
@ -288,7 +288,8 @@ bool IsBIOS(const wxString& filename, wxString& description)
|
|||
pxInputStream inway( filename, new wxFFileInputStream( filename ) );
|
||||
|
||||
if (!inway.IsOk()) return false;
|
||||
if (inway.Length() < 512*1024) return false;
|
||||
// FPS2BIOS is smaller and of variable size
|
||||
//if (inway.Length() < 512*1024) return false;
|
||||
|
||||
try {
|
||||
u32 version;
|
||||
|
|
Loading…
Reference in New Issue