mirror of https://github.com/PCSX2/pcsx2.git
The usual Linux things.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3096 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
2c4101b78b
commit
5cc918b9dd
|
@ -146,7 +146,6 @@ set(pcsx2Sources
|
||||||
Patch.cpp
|
Patch.cpp
|
||||||
Patch_Memory.cpp
|
Patch_Memory.cpp
|
||||||
Pcsx2Config.cpp
|
Pcsx2Config.cpp
|
||||||
pcsx2hostfs.cpp
|
|
||||||
PluginManager.cpp
|
PluginManager.cpp
|
||||||
PrecompiledHeader.cpp
|
PrecompiledHeader.cpp
|
||||||
R3000A.cpp
|
R3000A.cpp
|
||||||
|
|
|
@ -21,6 +21,10 @@
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#ifndef O_BINARY
|
||||||
|
#define O_BINARY 0
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace R3000A {
|
namespace R3000A {
|
||||||
|
|
||||||
#define v0 (psxRegs.GPR.n.v0)
|
#define v0 (psxRegs.GPR.n.v0)
|
||||||
|
|
|
@ -522,7 +522,6 @@
|
||||||
<Unit filename="../gui/i18n.h" />
|
<Unit filename="../gui/i18n.h" />
|
||||||
<Unit filename="../gui/pxEvtThread.h" />
|
<Unit filename="../gui/pxEvtThread.h" />
|
||||||
<Unit filename="../gui/pxLogTextCtrl.cpp" />
|
<Unit filename="../gui/pxLogTextCtrl.cpp" />
|
||||||
<Unit filename="../pcsx2hostfs.cpp" />
|
|
||||||
<Unit filename="../ps2/BiosTools.cpp" />
|
<Unit filename="../ps2/BiosTools.cpp" />
|
||||||
<Unit filename="../ps2/BiosTools.h" />
|
<Unit filename="../ps2/BiosTools.h" />
|
||||||
<Unit filename="../ps2/GIFpath.cpp" />
|
<Unit filename="../ps2/GIFpath.cpp" />
|
||||||
|
|
|
@ -80,7 +80,7 @@ Dialogs::AboutBoxDialog::AboutBoxDialog( wxWindow* parent )
|
||||||
"Gabest (Gsdx, Cdvdolio, Xpad), Zeydlitz (ZZogl)"
|
"Gabest (Gsdx, Cdvdolio, Xpad), Zeydlitz (ZZogl)"
|
||||||
"\n\n"
|
"\n\n"
|
||||||
"Special thanks to: black_wd, Belmont, BGome, _Demo_, Dreamtime, "
|
"Special thanks to: black_wd, Belmont, BGome, _Demo_, Dreamtime, "
|
||||||
"F|RES, MrBrown, razorblade, Seta-san, Skarmeth, feal87"
|
"F|RES, MrBrown, razorblade, Seta-san, Skarmeth, feal87, Athos, gregory"
|
||||||
);
|
);
|
||||||
|
|
||||||
// This sizer holds text of the authors and a logo!
|
// This sizer holds text of the authors and a logo!
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
<Option type="3" />
|
<Option type="3" />
|
||||||
<Option compiler="gcc" />
|
<Option compiler="gcc" />
|
||||||
<Compiler>
|
<Compiler>
|
||||||
<Add option="-g" />
|
<Add option="-O2" />
|
||||||
<Add option="-DNDEBUG" />
|
<Add option="-DNDEBUG" />
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<Linker>
|
<Linker>
|
||||||
|
|
Loading…
Reference in New Issue