diff --git a/pcsx2/gui/AppInit.cpp b/pcsx2/gui/AppInit.cpp index 416b9253a..094066df4 100644 --- a/pcsx2/gui/AppInit.cpp +++ b/pcsx2/gui/AppInit.cpp @@ -395,8 +395,10 @@ Pcsx2App::~Pcsx2App() struct CrtDebugBreak { CrtDebugBreak( int spot ) - { - _CrtSetBreakAlloc( spot ); + { +#ifndef __LINUX__ + _CrtSetBreakAlloc( spot ); +#endif } };