mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-07 22:10:59 +01:00
CommandProcessor: Reduce extra_data_length field size to 8 bits
This is in line with 3dbrew, and Citra PR 7272 reported the change to fix game issues.
This commit is contained in:
parent
236326fbac
commit
6dc6de3422
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ union CommandHeader {
|
|||
// fourth bit: 0xFF000000
|
||||
BitFieldLegacy<16, 4, u32> parameter_mask;
|
||||
|
||||
BitFieldLegacy<20, 11, u32> extra_data_length;
|
||||
BitFieldLegacy<20, 8, u32> extra_data_length;
|
||||
|
||||
BitFieldLegacy<31, 1, u32> group_commands;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue