rsx: Fix index array offset bits

This commit is contained in:
Eladash 2021-01-05 15:42:32 +02:00 committed by Ivan
parent c2cbc62be6
commit 07c925223b

View File

@ -1745,7 +1745,7 @@ struct registers_decoder<NV4097_SET_INDEX_ARRAY_ADDRESS>
u32 index_array_offset() const
{
return value;
return bf_decoder<0, 29>(value);
}
};