From 0190c0e9d3d80ccb9d8167c25a9754ef7639dfef Mon Sep 17 00:00:00 2001 From: kd-11 Date: Mon, 9 Jan 2017 13:09:12 +0300 Subject: [PATCH] [rsx/wip] Fix counting error again! --- rpcs3/Emu/RSX/RSXVertexProgram.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/RSXVertexProgram.h b/rpcs3/Emu/RSX/RSXVertexProgram.h index d38fca614d..9ebdd009be 100644 --- a/rpcs3/Emu/RSX/RSXVertexProgram.h +++ b/rpcs3/Emu/RSX/RSXVertexProgram.h @@ -149,9 +149,9 @@ union D3 struct { - u32 : 22; + u32 : 24; u32 brb_cond_true : 1; - u32 : 6; + u32 : 4; u32 iaddrl : 3; }; };