summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/gsp.cpp
diff options
context:
space:
mode:
authorTony Wasserka <NeoBrainX@gmail.com>2014-05-17 23:01:58 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-12 12:10:50 +0200
commitd4530765ceaf75cecd16b3ed5a7829611af2d82c (patch)
tree16e0e9cd41102a5201bc97fefe5dd0d1ebebf114 /src/core/hle/service/gsp.cpp
parentRename LCD to GPU. (diff)
downloadyuzu-d4530765ceaf75cecd16b3ed5a7829611af2d82c.tar
yuzu-d4530765ceaf75cecd16b3ed5a7829611af2d82c.tar.gz
yuzu-d4530765ceaf75cecd16b3ed5a7829611af2d82c.tar.bz2
yuzu-d4530765ceaf75cecd16b3ed5a7829611af2d82c.tar.lz
yuzu-d4530765ceaf75cecd16b3ed5a7829611af2d82c.tar.xz
yuzu-d4530765ceaf75cecd16b3ed5a7829611af2d82c.tar.zst
yuzu-d4530765ceaf75cecd16b3ed5a7829611af2d82c.zip
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) {
break;
case GXCommandId::SET_COMMAND_LIST_LAST:
- GPU::Write<u32>(GPU::CommandListAddress, cmd_buff[1] >> 3);
- GPU::Write<u32>(GPU::CommandListSize, cmd_buff[2] >> 3);
- GPU::Write<u32>(GPU::ProcessCommandList, 1); // TODO: Not sure if we are supposed to always write this
+ GPU::Write<u32>(GPU::Registers::CommandListAddress, cmd_buff[1] >> 3);
+ GPU::Write<u32>(GPU::Registers::CommandListSize, cmd_buff[2] >> 3);
+ GPU::Write<u32>(GPU::Registers::ProcessCommandList, 1); // TODO: Not sure if we are supposed to always write this
break;
case GXCommandId::SET_MEMORY_FILL: