pcsx2: Fix tons of warning (no return statement)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3695 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gregory.hainaut@gmail.com 2010-08-27 15:49:44 +00:00
parent 809135a3b0
commit 07e7995464
1 changed files with 2 additions and 2 deletions

View File

@ -343,11 +343,11 @@ struct Pcsx2Config
void LoadSave( IniInterface& conf );
void Set( const wxString& list, bool enabled=true );
bool Clear( const wxString& list ) { Set( list, false ); }
void Clear( const wxString& list ) { Set( list, false ); }
bool Get( GamefixId id ) const;
void Set( GamefixId id, bool enabled=true );
bool Clear( GamefixId id ) { Set( id, false ); }
void Clear( GamefixId id ) { Set( id, false ); }
bool operator ==( const GamefixOptions& right ) const
{