Linux: Fix compilation.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1986 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-10-08 19:10:05 +00:00
parent 2c8bede679
commit 53dd6b728a
1 changed files with 4 additions and 2 deletions

View File

@ -395,8 +395,10 @@ Pcsx2App::~Pcsx2App()
struct CrtDebugBreak
{
CrtDebugBreak( int spot )
{
_CrtSetBreakAlloc( spot );
{
#ifndef __LINUX__
_CrtSetBreakAlloc( spot );
#endif
}
};