From 1aa0eee37c3e9872f9d173ffd9fe4a17bbd2f19f Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Sun, 12 Jul 2015 02:29:19 +0200 Subject: [PATCH] S1 (as UV?) should be normalized, fixes textures in Halo --- hw/xbox/nv2a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xbox/nv2a.c b/hw/xbox/nv2a.c index 3dbbb32b07..2d1dfed3d3 100644 --- a/hw/xbox/nv2a.c +++ b/hw/xbox/nv2a.c @@ -3820,7 +3820,7 @@ static void pgraph_method(NV2AState *d, break; case NV097_SET_VERTEX_DATA_ARRAY_FORMAT_TYPE_S1: vertex_attribute->gl_type = GL_SHORT; - vertex_attribute->gl_normalize = GL_FALSE; + vertex_attribute->gl_normalize = GL_TRUE; vertex_attribute->size = 2; vertex_attribute->needs_conversion = false; break;