From 7074d3165100dc8d112cbdb53e1000c552bdbb40 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Mon, 26 Jul 2010 17:03:40 +0000 Subject: [PATCH] Minor log change. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3572 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/Gif.cpp | 6 +++--- pcsx2/HwWrite.cpp | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pcsx2/Gif.cpp b/pcsx2/Gif.cpp index 3cbda4107e..f8165729d7 100644 --- a/pcsx2/Gif.cpp +++ b/pcsx2/Gif.cpp @@ -271,7 +271,7 @@ void GIFdma() if ((dmacRegs->ctrl.STD == STD_GIF) && (prevcycles != 0)) { - Console.WriteLn("GS Stall Control Source = %x, Drain = %x\n MADR = %x, STADR = %x", (psHu32(0xe000) >> 4) & 0x3, (psHu32(0xe000) >> 6) & 0x3, gif->madr, psHu32(DMAC_STADR)); + //Console.WriteLn("GS Stall Control Source = %x, Drain = %x\n MADR = %x, STADR = %x", (psHu32(0xe000) >> 4) & 0x3, (psHu32(0xe000) >> 6) & 0x3, gif->madr, psHu32(DMAC_STADR)); if ((gif->madr + (gif->qwc * 16)) > dmacRegs->stadr.ADDR) { @@ -345,7 +345,7 @@ void GIFdma() if ((dmacRegs->ctrl.STD == STD_GIF) && (gif->chcr.MOD == NORMAL_MODE)) { - Console.WriteLn("DMA Stall Control on GIF normal"); + //Console.WriteLn("DMA Stall Control on GIF normal"); } gifRegs->stat.FQC = min((u16)0x10, gif->qwc);// FQC=31, hack ;) (for values of 31 that equal 16) [ used to be 0xE00; // APATH=3] //Check with Path3 masking games @@ -379,7 +379,7 @@ void GIFdma() { // stalled. // We really need to test this. Pay attention to prevcycles, as it used to trigger GIFchains in the code above. (rama) - Console.WriteLn("GS Stall Control start Source = %x, Drain = %x\n MADR = %x, STADR = %x", (psHu32(0xe000) >> 4) & 0x3, (psHu32(0xe000) >> 6) & 0x3,gif->madr, psHu32(DMAC_STADR)); + //Console.WriteLn("GS Stall Control start Source = %x, Drain = %x\n MADR = %x, STADR = %x", (psHu32(0xe000) >> 4) & 0x3, (psHu32(0xe000) >> 6) & 0x3,gif->madr, psHu32(DMAC_STADR)); prevcycles = gscycles; //gif->tadr -= 16; // Quake III revolution wants to see tadr move. diff --git a/pcsx2/HwWrite.cpp b/pcsx2/HwWrite.cpp index 29cf919e55..1ca6908e8e 100644 --- a/pcsx2/HwWrite.cpp +++ b/pcsx2/HwWrite.cpp @@ -362,11 +362,11 @@ void hwWrite8(u32 mem, u8 value) oldvalue = psHu8(mem); if ((oldvalue & 0x3) != (value & 0x3)) { - DevCon.Warning("8 Stall Source Changed to %x", (value & 0x30) >> 4); + DevCon.Warning("8bit Stall Source Changed to %x", (value & 0x30) >> 4); } if ((oldvalue & 0xC) != (value & 0xC)) { - DevCon.Warning("8 Stall Destination Changed to %x", (value & 0xC0) >> 4); + DevCon.Warning("8bit Stall Destination Changed to %x", (value & 0xC0) >> 4); } psHu8(mem) = value; break; @@ -678,11 +678,11 @@ __forceinline void hwWrite16(u32 mem, u16 value) oldvalue = psHu16(mem); if ((oldvalue & 0x30) != (value & 0x30)) { - DevCon.Warning("Stall Source Changed to %x", (value & 0x30) >> 4); + DevCon.Warning("16bit Stall Source Changed to %x", (value & 0x30) >> 4); } if ((oldvalue & 0xC0) != (value & 0xC0)) { - DevCon.Warning("Stall Destination Changed to %x", (value & 0xC0) >> 4); + DevCon.Warning("16bit Stall Destination Changed to %x", (value & 0xC0) >> 4); } psHu16(mem) = value; break; @@ -877,11 +877,11 @@ void __fastcall hwWrite32_page_0E( u32 mem, u32 value ) } if ((oldvalue & 0x30) != (value & 0x30)) { - DevCon.Warning("Stall Source Changed to %x", (value & 0x30) >> 4); + DevCon.Warning("32bit Stall Source Changed to %x", (value & 0x30) >> 4); } if ((oldvalue & 0xC0) != (value & 0xC0)) { - DevCon.Warning("Stall Destination Changed to %x", (value & 0xC0) >> 4); + DevCon.Warning("32bit Stall Destination Changed to %x", (value & 0xC0) >> 4); } break; } @@ -1146,11 +1146,11 @@ void __fastcall hwWrite64_page_0E( u32 mem, const mem64_t* srcval ) } if ((oldvalue & 0x30) != (value & 0x30)) { - DevCon.Warning("Stall Source Changed to %x", (value & 0x30) >> 4); + DevCon.Warning("64bit Stall Source Changed to %x", (value & 0x30) >> 4); } if ((oldvalue & 0xC0) != (value & 0xC0)) { - DevCon.Warning("Stall Destination Changed to %x", (value & 0xC0) >> 4); + DevCon.Warning("64bit Stall Destination Changed to %x", (value & 0xC0) >> 4); } break; }