summaryrefslogtreecommitdiff
path: root/src/core/hle/service/gsp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/gsp.cpp')
-rw-r--r--src/core/hle/service/gsp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp
index d51e6c66d..15e9d19a5 100644
--- a/src/core/hle/service/gsp.cpp
+++ b/src/core/hle/service/gsp.cpp
@@ -123,9 +123,9 @@ void TriggerCmdReqQueue(Service::Interface* self) {
123 break; 123 break;
124 124
125 case GXCommandId::SET_COMMAND_LIST_LAST: 125 case GXCommandId::SET_COMMAND_LIST_LAST:
126 GPU::Write<u32>(GPU::CommandListAddress, cmd_buff[1] >> 3); 126 GPU::Write<u32>(GPU::Registers::CommandListAddress, cmd_buff[1] >> 3);
127 GPU::Write<u32>(GPU::CommandListSize, cmd_buff[2] >> 3); 127 GPU::Write<u32>(GPU::Registers::CommandListSize, cmd_buff[2] >> 3);
128 GPU::Write<u32>(GPU::ProcessCommandList, 1); // TODO: Not sure if we are supposed to always write this 128 GPU::Write<u32>(GPU::Registers::ProcessCommandList, 1); // TODO: Not sure if we are supposed to always write this
129 break; 129 break;
130 130
131 case GXCommandId::SET_MEMORY_FILL: 131 case GXCommandId::SET_MEMORY_FILL: