mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 19:45:46 +00:00
GPU: Corrected the upper bound of the PFIFO method ids in the command processor.
This commit is contained in:
parent
c3bcff1e59
commit
f42b93399f
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ enum class BufferMethods {
|
||||||
SetGraphMacroCode = 0x45,
|
SetGraphMacroCode = 0x45,
|
||||||
SetGraphMacroCodeArg = 0x46,
|
SetGraphMacroCodeArg = 0x46,
|
||||||
SetGraphMacroEntry = 0x47,
|
SetGraphMacroEntry = 0x47,
|
||||||
CountBufferMethods = 0x100,
|
CountBufferMethods = 0x40,
|
||||||
};
|
};
|
||||||
|
|
||||||
void GPU::WriteReg(u32 method, u32 subchannel, u32 value, u32 remaining_params) {
|
void GPU::WriteReg(u32 method, u32 subchannel, u32 value, u32 remaining_params) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue