1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

Merge pull request #25 from FGRE/master

Fix linking
This commit is contained in:
DHrpcs3 2013-11-25 09:57:22 -08:00
commit a852baee5b
8 changed files with 8 additions and 14 deletions

View File

@ -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)

View File

@ -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;

View File

@ -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;

View File

@ -1,5 +1,3 @@
#include "stdafx.h"
class AboutDialog
: public wxDialog
{

View File

@ -1,6 +1,3 @@
#include "stdafx.h"
#include "Emu/CPU/CPUDisAsm.h"
class InstructionEditorDialog
: public wxDialog
{

View File

@ -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;

View File

@ -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"

View File

@ -1,6 +1,3 @@
#include "stdafx.h"
#include "Emu/CPU/CPUDisAsm.h"
class RegisterEditorDialog : public wxDialog
{
u64 pc;