mirror of https://github.com/PCSX2/pcsx2.git
Tweak zzogl-pg's C::B file a bit. Slap a quick patch on pcsx2 so it compiles. (Jake will probably want to fix that properly...)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2949 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
298dbbd201
commit
546ead475b
|
@ -62,7 +62,13 @@ void RecentIsoManager::OnChangedSelection( wxCommandEvent& evt )
|
|||
|
||||
ScopedCoreThreadPopup stopped_core;
|
||||
//SysUpdateIsoSrcFile( m_Items[i].Filename );
|
||||
#ifdef __LINUX__
|
||||
// Likely not what was intended, but it compiles for the moment...
|
||||
SwapOrReset_Iso( NULL, stopped_core, m_Items[i].Filename, GetMsg_IsoImageChanged());
|
||||
#else
|
||||
// Getting a window from the menu?
|
||||
SwapOrReset_Iso( m_Menu->GetWindow(), stopped_core, m_Items[i].Filename, GetMsg_IsoImageChanged());
|
||||
#endif
|
||||
stopped_core.AllowResume();
|
||||
}
|
||||
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
<Option createDefFile="1" />
|
||||
<Option createStaticLib="1" />
|
||||
<Compiler>
|
||||
<Add option="-O2" />
|
||||
<Add option="-W" />
|
||||
<Add option="-g" />
|
||||
<Add option="-DZEROGS_DEVBUILD" />
|
||||
|
@ -63,9 +64,9 @@
|
|||
<Add option="-Wno-unused-value" />
|
||||
<Add option="-Wunused-variable" />
|
||||
<Add option="-m32" />
|
||||
<Add option="-I/opt/cg/include -L/opt/cg/lib" />
|
||||
<Add option="-fno-strict-aliasing" />
|
||||
<Add option="-pipe -msse -msse2" />
|
||||
<Add option="-I/opt/cg/include" />
|
||||
<Add option="-L/opt/cg/lib" />
|
||||
<Add option="-msse2" />
|
||||
<Add option="-fno-regmove" />
|
||||
<Add option="-DZEROGS_SSE2" />
|
||||
<Add directory="../../Linux" />
|
||||
|
|
Loading…
Reference in New Issue