mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
809135a3b0
commit
07e7995464
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue