Fix warning errors in file.cpp line 245 and 262

This commit is contained in:
qeed 2009-06-13 16:42:21 +00:00
parent 3a0f215477
commit 726c838ead
1 changed files with 3 additions and 3 deletions

View File

@ -242,7 +242,7 @@ zpfail:
unzCloseCurrentFile(tz);
unzClose(tz);
FCEUFILE *fceufp=fceufp = new FCEUFILE();
FCEUFILE *fceufp = new FCEUFILE();
fceufp->stream = ms;
fceufp->size = size;
return fceufp;
@ -259,7 +259,7 @@ FCEUFILE * FCEU_fopen(const char *path, const char *ipsfn, char *mode, char *ext
bool read = (std::string)mode == "rb";
bool write = (std::string)mode == "wb";
if(read&&write || (!read&&!write))
if((read&&write) || (!read&&!write))
{
FCEU_PrintError("invalid file open mode specified (only wb and rb are supported)");
return 0;
@ -764,4 +764,4 @@ void FCEUARCHIVEFILEINFO::FilterByExtension(const char** ext)
this->erase(begin()+i);
ok: ;
}
}
}