From 2ecf6d1372a5b70563a8fc1c592e17d51fed43a8 Mon Sep 17 00:00:00 2001 From: arcum42 Date: Sat, 15 Nov 2008 14:08:49 +0000 Subject: [PATCH] Comment out broken MTGS logging code. Disable Logging menu in Linux if not a devbuild. git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@330 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/GS.cpp | 36 +++++++++++++++---------------- pcsx2/GS.h | 48 +++++++++++++++++++++--------------------- pcsx2/Linux/GtkGui.cpp | 5 ++++- pcsx2/Linux/LnxMain.c | 1 - 4 files changed, 46 insertions(+), 44 deletions(-) diff --git a/pcsx2/GS.cpp b/pcsx2/GS.cpp index 01562fc90b..19307731dd 100644 --- a/pcsx2/GS.cpp +++ b/pcsx2/GS.cpp @@ -189,11 +189,11 @@ void gsInit() if( GSsetBaseMem != NULL ) GSsetBaseMem(g_MTGSMem); -#if defined(_DEBUG) && defined(PCSX2_DEVBUILD) - assert( g_fMTGSWrite == NULL && g_fMTGSRead == NULL ); - g_fMTGSWrite = fopen("mtgswrite.txt", "w"); - g_fMTGSRead = fopen("mtgsread.txt", "w"); -#endif +//#if defined(_DEBUG) && defined(PCSX2_DEVBUILD) +// assert( g_fMTGSWrite == NULL && g_fMTGSRead == NULL ); +// g_fMTGSWrite = fopen("mtgswrite.txt", "w"); +// g_fMTGSRead = fopen("mtgsread.txt", "w"); +//#endif gsHasToExit=false; @@ -269,16 +269,16 @@ void gsShutdown() SysMunmap((uptr)GS_RINGBUFFERBASE, GS_RINGBUFFERSIZE); #endif -#if defined(_DEBUG) && defined(PCSX2_DEVBUILD) - if( g_fMTGSWrite != NULL ) { - fclose(g_fMTGSWrite); - g_fMTGSWrite = NULL; - } - if( g_fMTGSRead != NULL ) { - fclose(g_fMTGSRead); - g_fMTGSRead = NULL; - } -#endif +//#if defined(_DEBUG) && defined(PCSX2_DEVBUILD) +// if( g_fMTGSWrite != NULL ) { +// fclose(g_fMTGSWrite); +// g_fMTGSWrite = NULL; +// } +// if( g_fMTGSRead != NULL ) { +// fclose(g_fMTGSRead); +// g_fMTGSRead = NULL; +// } +//#endif } else GSclose(); @@ -1480,19 +1480,19 @@ void* GSThreadProc(void* lpParam) case GS_RINGTYPE_P1: { int qsize = (tag>>16); - MTGS_RECREAD(g_pGSRingPos+16, (qsize<<4)); +// MTGS_RECREAD(g_pGSRingPos+16, (qsize<<4)); // make sure that tag>>16 is the MAX size readable GSgifTransfer1((u32*)(g_pGSRingPos+16) - 0x1000 + 4*qsize, 0x4000-qsize*16); InterlockedExchangeAdd((long*)&g_pGSRingPos, 16 + ((tag>>16)<<4)); break; } case GS_RINGTYPE_P2: - MTGS_RECREAD(g_pGSRingPos+16, ((tag>>16)<<4)); +// MTGS_RECREAD(g_pGSRingPos+16, ((tag>>16)<<4)); GSgifTransfer2((u32*)(g_pGSRingPos+16), tag>>16); InterlockedExchangeAdd((long*)&g_pGSRingPos, 16 + ((tag>>16)<<4)); break; case GS_RINGTYPE_P3: - MTGS_RECREAD(g_pGSRingPos+16, ((tag>>16)<<4)); +// MTGS_RECREAD(g_pGSRingPos+16, ((tag>>16)<<4)); GSgifTransfer3((u32*)(g_pGSRingPos+16), tag>>16); InterlockedExchangeAdd((long*)&g_pGSRingPos, 16 + ((tag>>16)<<4)); break; diff --git a/pcsx2/GS.h b/pcsx2/GS.h index ba694b28cd..c2cbaa7378 100644 --- a/pcsx2/GS.h +++ b/pcsx2/GS.h @@ -67,41 +67,41 @@ u8* GSRingBufCopy(void* mem, u32 size, u32 type); void GSRingBufSimplePacket(int type, int data0, int data1, int data2); extern u8* g_pGSWritePos; -#ifdef PCSX2_DEVBUILD +//#ifdef PCSX2_DEVBUILD // use for debugging MTGS -extern FILE* g_fMTGSWrite, *g_fMTGSRead; -extern u32 g_MTGSDebug, g_MTGSId; +//extern FILE* g_fMTGSWrite, *g_fMTGSRead; +//extern u32 g_MTGSDebug, g_MTGSId; -static __forceinline void MTGS_RECWRITE(const u8 *start, u32 size) { - if( g_MTGSDebug & 1 ) { - const u32* pstart = (u32*)(start); - u32 cursize = (size); - fprintf(g_fMTGSWrite, "*%x-%x (%d)\n", (u32)(uptr)(start), (u32)(size), ++g_MTGSId); - if( g_MTGSDebug & 2 ) fflush(g_fMTGSWrite); - } -} +//static __forceinline void MTGS_RECWRITE(const u8 *start, u32 size) { +// if( g_MTGSDebug & 1 ) { +// const u32* pstart = (u32*)(start); +// u32 cursize = (size); +// fprintf(g_fMTGSWrite, "*%x-%x (%d)\n", (u32)(uptr)(start), (u32)(size), ++g_MTGSId); +// if( g_MTGSDebug & 2 ) fflush(g_fMTGSWrite); +// } +//} -static __forceinline void MTGS_RECREAD( const u8* start, u32 size) { - if( g_MTGSDebug & 1 ) { - const u32* pstart = (u32*)(start); - u32 cursize = (size); - fprintf(g_fMTGSRead, "*%x-%x (%d)\n", (u32)(uptr)(start), (u32)(size), ++g_MTGSId); - if( g_MTGSDebug & 4 ) fflush(g_fMTGSRead); - } -} -#else +//static __forceinline void MTGS_RECREAD( const u8* start, u32 size) { +// if( g_MTGSDebug & 1 ) { +// const u32* pstart = (u32*)(start); +// u32 cursize = (size); +// fprintf(g_fMTGSRead, "*%x-%x (%d)\n", (u32)(uptr)(start), (u32)(size), ++g_MTGSId); +// if( g_MTGSDebug & 4 ) fflush(g_fMTGSRead); +// } +//} +//#else -#define MTGS_RECWRITE 0&& -#define MTGS_RECREAD 0&& +//#define MTGS_RECWRITE 0&& +//#define MTGS_RECREAD 0&& -#endif +//#endif // mem and size are the ones from GSRingBufCopy static __forceinline void GSRINGBUF_DONECOPY(const u8 *mem, u32 size) { u8* temp = (u8*)(mem) + (size); assert( temp <= GS_RINGBUFFEREND); - MTGS_RECWRITE(mem, size); +// MTGS_RECWRITE(mem, size); if( temp == GS_RINGBUFFEREND ) temp = GS_RINGBUFFERBASE; InterlockedExchangePointer((void**)&g_pGSWritePos, temp); } diff --git a/pcsx2/Linux/GtkGui.cpp b/pcsx2/Linux/GtkGui.cpp index fb334aafd9..2fb38f4a62 100644 --- a/pcsx2/Linux/GtkGui.cpp +++ b/pcsx2/Linux/GtkGui.cpp @@ -70,6 +70,9 @@ void StartGui() { // disable anything not implemented or not working properly. gtk_widget_set_sensitive(GTK_WIDGET(lookup_widget(MainWindow, "patch_browser1")), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(lookup_widget(MainWindow, "patch_finder2")), FALSE); + #ifndef PCSX2_DEVBUILD + gtk_widget_set_sensitive(GTK_WIDGET(lookup_widget(MainWindow, "GtkMenuItem_Logging")), FALSE); + #endif gtk_widget_show_all(MainWindow); gtk_window_activate_focus(GTK_WINDOW(MainWindow)); @@ -146,7 +149,7 @@ void RunExecute(int run) // this needs to be called for every new game! (note: sometimes launching games through bios will give a crc of 0) if( GSsetGameCRC != NULL ) GSsetGameCRC(ElfCRC, g_ZeroGSOptions); - + if (run) Cpu->Execute(); } diff --git a/pcsx2/Linux/LnxMain.c b/pcsx2/Linux/LnxMain.c index 46a5ccb7c1..e16779f22b 100644 --- a/pcsx2/Linux/LnxMain.c +++ b/pcsx2/Linux/LnxMain.c @@ -254,7 +254,6 @@ void CloseLanguages() { void ChangeLanguage(char *lang) { strcpy(Config.Lang, lang); SaveConfig(); - LoadConfig(); } /* Quick macros for checking shift, control, alt, and caps lock. */