mirror of https://github.com/PCSX2/pcsx2.git
wxgui: A few Linux related changes.
git-svn-id: http://pcsx2.googlecode.com/svn/branches/wxgui@1692 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
f39c52f5d1
commit
282abf816d
|
@ -35,6 +35,8 @@
|
|||
<Add option="-Wall" />
|
||||
<Add option="`wx-config --version=2.8 --static=no --unicode=yes --debug=no --cflags`" />
|
||||
<Add option="-DNDEBUG" />
|
||||
<Add directory="../../include" />
|
||||
<Add directory="../../include/Utilities" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add option="-s" />
|
||||
|
@ -51,6 +53,8 @@
|
|||
<Add option="`wx-config --version=2.8 --static=no --unicode=yes --debug=yes --cflags`" />
|
||||
<Add option="-DPCSX2_DEVBUILD" />
|
||||
<Add option="-DNDEBUG" />
|
||||
<Add directory="../../include" />
|
||||
<Add directory="../../include/Utilities" />
|
||||
</Compiler>
|
||||
</Target>
|
||||
</Build>
|
||||
|
|
|
@ -109,6 +109,7 @@
|
|||
<Unit filename="../../common/include/Pcsx2Config.h" />
|
||||
<Unit filename="../../common/include/Pcsx2Defs.h" />
|
||||
<Unit filename="../../common/include/Pcsx2Types.h" />
|
||||
<Unit filename="../../common/include/Utilities/Dependencies.h" />
|
||||
<Unit filename="../../common/include/wx/folderdesc.txt" />
|
||||
<Unit filename="../../common/include/wx/scopedarray.h" />
|
||||
<Unit filename="../../common/include/wx/scopedptr.h" />
|
||||
|
|
|
@ -57,6 +57,7 @@ extern "C"
|
|||
void JITCompile();
|
||||
void JITCompileInBlock();
|
||||
void DispatcherReg();
|
||||
void DispatcherEvent();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@ public:
|
|||
|
||||
bool PrepForExit();
|
||||
|
||||
void OnAssertFailure( const wxChar *file, int line, const wxChar *func, const wxChar *cond, const wxChar *msg );
|
||||
//void ( const wxChar *file, int line, const wxChar *func, const wxChar *cond, const wxChar *msg );
|
||||
|
||||
const wxBitmap& GetLogoBitmap();
|
||||
wxImageList& GetImgList_Config();
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
*/
|
||||
|
||||
#include "PrecompiledHeader.h"
|
||||
#include "Common.h"
|
||||
#include "System.h"
|
||||
#include "SaveState.h"
|
||||
#include "Elfheader.h"
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
.extern REGINFO
|
||||
.extern RECLUT
|
||||
.extern recRecompile
|
||||
.extern recEventTest
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// The address for all cleared blocks. It recompiles the current pc and then
|
||||
|
@ -48,3 +49,9 @@ DispatcherReg:
|
|||
shr eax, 16
|
||||
mov ecx, dword ptr [RECLUT+eax*4]
|
||||
jmp dword ptr [ecx+ebx]
|
||||
|
||||
.globl DispatcherEvent
|
||||
DispatcherEvent:
|
||||
|
||||
call recEventTest
|
||||
jmp DispatcherReg
|
||||
|
|
|
@ -535,12 +535,13 @@ static void recShutdown( void )
|
|||
#pragma warning(disable:4731) // frame pointer register 'ebp' modified by inline assembly code
|
||||
#endif
|
||||
|
||||
void recStep( void ) {
|
||||
void recStep( void )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
static void recEventTest()
|
||||
extern "C"
|
||||
{
|
||||
void recEventTest()
|
||||
{
|
||||
#ifdef PCSX2_DEVBUILD
|
||||
// dont' remove this check unless doing an official release
|
||||
|
@ -559,6 +560,7 @@ static void recEventTest()
|
|||
assert( !g_globalXMMSaved && !g_globalMMXSaved);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
|
||||
|
|
Loading…
Reference in New Issue