summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-04-23 19:45:14 -0500
committerSubv <subv2112@gmail.com>2018-04-25 11:53:54 -0500
commite2f2a49d2d0fd51ef83ef94fa2e93a2829d974e5 (patch)
tree1552c7ef7c6f3909631e03869059f616c24705f6 /src/video_core
parent22420612db08e6dd64a593d67ccb72dad774accd (diff)
GPU: Corrected the upper bound of the PFIFO method ids in the command processor.
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/command_processor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index f6a88f031..26792a2bf 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -27,7 +27,7 @@ enum class BufferMethods {
SetGraphMacroCode = 0x45,
SetGraphMacroCodeArg = 0x46,
SetGraphMacroEntry = 0x47,
- CountBufferMethods = 0x100,
+ CountBufferMethods = 0x40,
};
void GPU::WriteReg(u32 method, u32 subchannel, u32 value, u32 remaining_params) {