From 11f8da9092d146efc22cdb83f7aecff820147bd9 Mon Sep 17 00:00:00 2001 From: DrChat Date: Mon, 18 Dec 2017 18:11:24 -0600 Subject: [PATCH] [GPU] Whoops, accidentally flipped is_integer around. --- src/xenia/gpu/shader_translator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/gpu/shader_translator.cc b/src/xenia/gpu/shader_translator.cc index 937832d12..928d365b4 100644 --- a/src/xenia/gpu/shader_translator.cc +++ b/src/xenia/gpu/shader_translator.cc @@ -777,7 +777,7 @@ void ShaderTranslator::ParseVertexFetchInstruction( i.attributes.exp_adjust = op.exp_adjust(); i.attributes.is_index_rounded = op.is_index_rounded(); i.attributes.is_signed = op.is_signed(); - i.attributes.is_integer = op.is_normalized(); + i.attributes.is_integer = !op.is_normalized(); i.attributes.prefetch_count = op.prefetch_count(); // Store for later use by mini fetches.