wxgui: Added plugin selection dialog (complete with plugin enumeration and an exceedingly fancy progress bar), fixed some menus, added isofile recent lists, and lots more stuff is correctly saved and loaded from the configuration file.

* Dev note: Re-enabled USE_STL in wxWidgets since that's required to ensure thread safety.

git-svn-id: http://pcsx2.googlecode.com/svn/branches/wxgui@1505 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine
2009-07-14 06:18:52 +00:00
parent ec10451047
commit 8505e4a7e7
38 changed files with 1147 additions and 327 deletions
+2 -2
View File
@@ -45,8 +45,8 @@ namespace Threading
void Thread::Close()
{
if( m_terminated ) return;
pthread_cancel( m_thread );
if( !m_terminated )
pthread_cancel( m_thread );
pthread_join( m_thread, NULL );
}