mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 02:32:36 +01:00
commit
a852baee5b
@ -2,7 +2,9 @@
|
||||
#include <GL/gl.h>
|
||||
#include "GL/glext.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
typedef BOOL (WINAPI* PFNWGLSWAPINTERVALEXTPROC) (int interval);
|
||||
#endif
|
||||
|
||||
#define OPENGL_PROC(p, n) extern p gl##n
|
||||
#define OPENGL_PROC2(p, n, tn) OPENGL_PROC(p, n)
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "Loader/ELF.h"
|
||||
#include "Emu/Cell/RawSPUThread.h"
|
||||
|
||||
SysCallBase sc_spu("sys_spu");
|
||||
static SysCallBase sc_spu("sys_spu");
|
||||
extern SysCallBase sys_event;
|
||||
|
||||
static const u32 g_spu_group_thr_count = 255;
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include "stdafx.h"
|
||||
#include "Emu/SysCalls/SysCalls.h"
|
||||
|
||||
SysCallBase sc_spu("sys_spu");
|
||||
static SysCallBase sc_spu("sys_spu");
|
||||
|
||||
u32 _max_usable_spu = 0;
|
||||
u32 _max_raw_spu = 0;
|
||||
@ -18,4 +18,4 @@ int sys_raw_spu_create(u32 id_addr, u32 attr_addr)
|
||||
{
|
||||
Memory.Write32(id_addr, Emu.GetIdManager().GetNewID("raw_spu"));
|
||||
return CELL_OK;
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,3 @@
|
||||
#include "stdafx.h"
|
||||
|
||||
class AboutDialog
|
||||
: public wxDialog
|
||||
{
|
@ -1,6 +1,3 @@
|
||||
#include "stdafx.h"
|
||||
#include "Emu/CPU/CPUDisAsm.h"
|
||||
|
||||
class InstructionEditorDialog
|
||||
: public wxDialog
|
||||
{
|
@ -7,8 +7,8 @@
|
||||
#include "Emu/ARMv7/ARMv7DisAsm.h"
|
||||
#include "Emu/ARMv7/ARMv7Decoder.h"
|
||||
|
||||
#include "InstructionEditor.cpp"
|
||||
#include "RegisterEditor.cpp"
|
||||
#include "InstructionEditor.h"
|
||||
#include "RegisterEditor.h"
|
||||
|
||||
//static const int show_lines = 30;
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
#include "Emu/GS/sysutil_video.h"
|
||||
#include "Gui/VHDDManager.h"
|
||||
#include "Gui/VFSManager.h"
|
||||
#include "Gui/AboutDialog.cpp"
|
||||
#include "Gui/AboutDialog.h"
|
||||
#include <wx/dynlib.h>
|
||||
|
||||
#include "scetool/scetool.cpp"
|
||||
|
@ -1,6 +1,3 @@
|
||||
#include "stdafx.h"
|
||||
#include "Emu/CPU/CPUDisAsm.h"
|
||||
|
||||
class RegisterEditorDialog : public wxDialog
|
||||
{
|
||||
u64 pc;
|
Loading…
Reference in New Issue
Block a user