mirror of https://github.com/PCSX2/pcsx2.git
Linux: Fix compilation.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1986 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
2c8bede679
commit
53dd6b728a
|
@ -395,8 +395,10 @@ Pcsx2App::~Pcsx2App()
|
|||
struct CrtDebugBreak
|
||||
{
|
||||
CrtDebugBreak( int spot )
|
||||
{
|
||||
_CrtSetBreakAlloc( spot );
|
||||
{
|
||||
#ifndef __LINUX__
|
||||
_CrtSetBreakAlloc( spot );
|
||||
#endif
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue