From 01c2f0fa74d1f67ec135eaeed81f029058ef25a0 Mon Sep 17 00:00:00 2001 From: Erik Abair Date: Sun, 9 Jan 2022 15:15:17 -0800 Subject: [PATCH] nv2a: Fix handling of NV097_SET_VERTEX_DATA4S_M --- hw/xbox/nv2a/pgraph.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/hw/xbox/nv2a/pgraph.c b/hw/xbox/nv2a/pgraph.c index 6dfa1d7e5b..6d6fd7cca5 100644 --- a/hw/xbox/nv2a/pgraph.c +++ b/hw/xbox/nv2a/pgraph.c @@ -3099,14 +3099,11 @@ DEF_METHOD(NV097, SET_VERTEX_DATA4S_M) int slot = (method - NV097_SET_VERTEX_DATA4S_M) / 4; unsigned int part = slot % 2; slot /= 2; - assert(false); /* FIXME: Untested! */ VertexAttribute *attribute = &pg->vertex_attributes[slot]; pgraph_allocate_inline_buffer_vertices(pg, slot); - /* FIXME: Is mapping to [-1,+1] correct? */ - attribute->inline_value[part * 2 + 0] = ((int16_t)(parameter & 0xFFFF) - * 2.0 + 1) / 65535.0; - attribute->inline_value[part * 2 + 1] = ((int16_t)(parameter >> 16) - * 2.0 + 1) / 65535.0; + + attribute->inline_value[part * 2 + 0] = (float)(int16_t)(parameter & 0xFFFF); + attribute->inline_value[part * 2 + 1] = (float)(int16_t)(parameter >> 16); if ((slot == 0) && (part == 1)) { pgraph_finish_inline_buffer_vertex(pg); }