mirror of https://github.com/PCSX2/pcsx2.git
Fixed a compiler warning.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2504 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
781e7d8d2e
commit
287bd773f8
|
@ -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 );
|
||||
|
|
|
@ -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() )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue