From e97bc516e64f2a471df28f77cba0461007746cf0 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Wed, 2 Sep 2009 18:55:36 +0000 Subject: Warning fixes/suppressions(aui), assorted code cleanup, d3d vertex shader cache expiration interval increased. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4165 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/VideoCommon/Src/BPStructs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/Src/BPStructs.cpp') diff --git a/Source/Core/VideoCommon/Src/BPStructs.cpp b/Source/Core/VideoCommon/Src/BPStructs.cpp index 2e003a1b98..69a53799b7 100644 --- a/Source/Core/VideoCommon/Src/BPStructs.cpp +++ b/Source/Core/VideoCommon/Src/BPStructs.cpp @@ -224,7 +224,7 @@ void BPWritten(const BPCmd& bp) float xfbLines = ((bpmem.copyTexSrcWH.y + 1.0f) * yScale); if ((u32)xfbLines > MAX_XFB_HEIGHT) { - WARN_LOG(VIDEO, "Tried to scale EFB to too many XFB lines (%f)", xfbLines); + INFO_LOG(VIDEO, "Tried to scale EFB to too many XFB lines (%f)", xfbLines); xfbLines = MAX_XFB_HEIGHT; } @@ -460,6 +460,7 @@ void BPWritten(const BPCmd& bp) case BPMEM_TX_SETMODE0+1: case BPMEM_TX_SETMODE0+2: case BPMEM_TX_SETMODE0+3: + SetSamplerState(bp); case BPMEM_TX_SETMODE1: case BPMEM_TX_SETMODE1+1: case BPMEM_TX_SETMODE1+2: @@ -472,7 +473,6 @@ void BPWritten(const BPCmd& bp) case BPMEM_TX_SETMODE1_4+1: case BPMEM_TX_SETMODE1_4+2: case BPMEM_TX_SETMODE1_4+3: - SetSamplerState(bp); break; // -------------------------------------------- // BPMEM_TX_SETIMAGE0 - Texture width, height, format -- cgit v1.2.3