From 191453d89abae5fa4be89ced3583372b1df2aa96 Mon Sep 17 00:00:00 2001 From: Kingcom Date: Mon, 28 Dec 2015 22:05:01 +0100 Subject: [PATCH] gsdx: fix windows compilation --- plugins/GSdx/GSTextureCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GSdx/GSTextureCache.cpp b/plugins/GSdx/GSTextureCache.cpp index d971a2b7b7..a172751539 100644 --- a/plugins/GSdx/GSTextureCache.cpp +++ b/plugins/GSdx/GSTextureCache.cpp @@ -345,7 +345,7 @@ GSTextureCache::Target* GSTextureCache::LookupTarget(const GIFRegTEX0& TEX0, int int max_page = (MAX_PAGES - page0); int max_h = 32 * max_page / TEX0.TBW; // h is likely smaller than w (true most of the time). Reduce the upload size (speed) - max_h = std::min(max_h, TEX0.TBW * 64); + max_h = std::min(max_h, TEX0.TBW * 64); dst->m_dirty.push_back(GSDirtyRect(GSVector4i(0, 0, TEX0.TBW * 64, max_h), TEX0.PSM)); dst->Update();