Fixed a compiler warning.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2504 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
cottonvibes 2010-01-24 02:07:19 +00:00
parent 781e7d8d2e
commit 287bd773f8
2 changed files with 2 additions and 2 deletions

View File

@ -482,7 +482,7 @@ public:
void PostMenuAction( MenuIdentifiers menu_id ) const;
int IssueDialogAsModal( const wxString& dlgName );
void PostMethod( FnPtr_AppMethod method );
bool DoStuckThread( PersistentThread& stuck_thread );
int DoStuckThread( PersistentThread& stuck_thread );
void SysExecute();
void SysExecute( CDVD_SourceType cdvdsrc, const wxString& elf_override=wxEmptyString );

View File

@ -320,7 +320,7 @@ void Pcsx2App::OnOpenDialog_StuckThread( wxCommandEvent& evt )
DoStuckThread( *(PersistentThread*)evt.GetClientData() );
}
bool Pcsx2App::DoStuckThread( PersistentThread& stuck_thread )
int Pcsx2App::DoStuckThread( PersistentThread& stuck_thread )
{
if( !wxThread::IsMain() )
{