From 8bf6ba1440826a3c087b397a210db747cf905614 Mon Sep 17 00:00:00 2001 From: Kojin Date: Thu, 7 May 2020 15:31:01 -0400 Subject: [PATCH] Merge pull request #3263 from tadanokojin/ridge-racer-v gsdx: mirror RGBAQ to 0x11 --- plugins/GSdx/GSState.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/GSdx/GSState.cpp b/plugins/GSdx/GSState.cpp index 8cf9c95e99..ef7ca26936 100644 --- a/plugins/GSdx/GSState.cpp +++ b/plugins/GSdx/GSState.cpp @@ -329,6 +329,7 @@ void GSState::ResetHandlers() m_fpGIFRegHandlers[GIF_A_D_REG_PRIM] = &GSState::GIFRegHandlerPRIM; m_fpGIFRegHandlers[GIF_A_D_REG_RGBAQ] = &GSState::GIFRegHandlerRGBAQ; + m_fpGIFRegHandlers[GIF_A_D_REG_RGBAQ + 0x10] = &GSState::GIFRegHandlerRGBAQ; m_fpGIFRegHandlers[GIF_A_D_REG_ST] = &GSState::GIFRegHandlerST; m_fpGIFRegHandlers[GIF_A_D_REG_UV] = m_userhacks_wildhack ? &GSState::GIFRegHandlerUV_Hack : &GSState::GIFRegHandlerUV; m_fpGIFRegHandlers[GIF_A_D_REG_TEX0_1] = &GSState::GIFRegHandlerTEX0<0>;