Fix Linux again (and again and again and again...)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@925 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-04-08 13:34:51 +00:00
parent e3a87fecd9
commit 08c6f68aba
3 changed files with 7 additions and 3 deletions

View File

@ -31,8 +31,8 @@
#include "System.h"
#include "SaveState.h"
#include "Plugins.h"
#include "SaveState.h"
#include "DebugTools/Debug.h"
#include "Memory.h"

View File

@ -131,8 +131,11 @@ static void iDumpBlock( int startpc, u8 * ptr )
Console::Status( "dump1 %x:%x, %x", params startpc, pc, cpuRegs.cycle );
Path::CreateDirectory( "dumps" );
#ifndef __LINUX__
ssprintf( filename, "dumps\\R5900dump%.8X.txt", startpc );
#else
ssprintf( filename, "dumps/R5900dump%.8X.txt", startpc );
#endif
fflush( stdout );
// f = fopen( "dump1", "wb" );
// fwrite( ptr, 1, (u32)x86Ptr - (u32)ptr, f );

View File

@ -1,4 +1,5 @@
INCLUDES = -I@srcdir@/.. -I@srcdir@/../../ -I@srcdir@/../../../common/include -I@srcdir@/../../../3rdparty
noinst_LIBRARIES = libix86.a
libix86_a_SOURCES = ix86.cpp ix86.inl ix86_3dnow.inl ix86.h ix86_fpu.inl ix86_mmx.inl ix86_sse.inl ix86_tools.cpp ix86_cpudetect.cpp ix86_macros.h ix86_group1.inl
libix86_a_SOURCES = ix86_mmx.cpp ix86_tools.cpp ix86.cpp ix86_3dnow.cpp ix86_fpu.cpp ix86_legacy.cpp ix86_sse.cpp ix86_cpudetect.cpp ix86_group1.cpp \
ix86_internal.h ix86.h ix86_macros.h ix86_sse_helpers.h ix86_types.h