Little logic error in the HLE ioman code that arcum spotted. (It's in code that isn't reachable unless there's a bug in fd allocation so it won't affect anything.)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3129 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
sudonim1 2010-05-30 17:43:20 +00:00
parent a660d7e721
commit 262a806c63
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ namespace ioman {
else
{
v0 = allocfd(file);
if (v0 < 0)
if ((s32)v0 < 0)
file->close();
}