소스 검색

GPU: Corrected the upper bound of the PFIFO method ids in the command processor.

Subv 8 년 전
부모
커밋
e2f2a49d2d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/video_core/command_processor.cpp

+ 1 - 1
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) {