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:
ramapcsx2 2011-05-02 02:02:46 +00:00
parent efe1e665ee
commit 8d5165551e
1 changed files with 2 additions and 1 deletions

View File

@ -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;