1
0
Fork 0
mirror of https://github.com/PabloMK7/citra.git synced 2025-05-20 02:19:47 +02:00

Merge pull request from jroweboy/fix-register-length

Use the correct register length for index_array
This commit is contained in:
James Rowe 2019-12-13 20:31:08 -07:00 committed by GitHub
commit 8b1738aeac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -138,7 +138,8 @@ struct PipelineRegs {
};
union {
BitField<0, 31, u32> offset; // relative to base attribute address
BitField<0, 28, u32> offset; // relative to base attribute address
BitField<28, 3, u32> unused;
BitField<31, 1, IndexFormat> format;
};
} index_array;