* Fix Issue 488 - FPU Full mode was being ignored.

* Slightly smaller and brighter camera icon.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2256 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2009-11-26 13:09:23 +00:00
parent bedb21f3d6
commit ab010e1bc9
3 changed files with 4 additions and 4 deletions

View File

@ -107,9 +107,9 @@ void wxDialogWithHelpers::AddOkCancel( wxSizer &sizer, bool hasApply )
if( m_hasContextHelp )
{
SetExtraStyle( wxDIALOG_EX_CONTEXTHELP );
#ifndef __WXMSW__
s_buttons += new wxContextHelpButton(this);
#endif
//#ifndef __WXMSW__
*m_extraButtonSizer += new wxContextHelpButton(this) | StdButton();
//#endif
}
// create a sizer to hold the help and ok/cancel buttons, for platforms

View File

@ -124,7 +124,7 @@ void Pcsx2Config::RecompilerOptions::ApplySanityCheck()
fpuIsRight = fpuOverflow;
if( fpuFullMode )
fpuIsRight = !fpuOverflow && !fpuExtraOverflow;
fpuIsRight = fpuOverflow && fpuExtraOverflow;
if( !fpuIsRight )
{

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB