summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2015-07-13 21:39:58 +0200
committerGravatar Tony Wasserka2015-07-13 21:39:58 +0200
commit884b681ccaf3cb4057ca0ed0102e446736bb535f (patch)
tree9359e9b88f0147879c672638d8c02960d2179d3a /src/core/hle
parentMerge pull request #859 from Apology11/master (diff)
parentCiTrace: Clean up initialization method. (diff)
downloadyuzu-884b681ccaf3cb4057ca0ed0102e446736bb535f.tar.gz
yuzu-884b681ccaf3cb4057ca0ed0102e446736bb535f.tar.xz
yuzu-884b681ccaf3cb4057ca0ed0102e446736bb535f.zip
Merge pull request #702 from neobrain/citrace
Add CiTrace recording support.
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/gsp_gpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/gsp_gpu.cpp b/src/core/hle/service/gsp_gpu.cpp
index f175085e8..3910d0227 100644
--- a/src/core/hle/service/gsp_gpu.cpp
+++ b/src/core/hle/service/gsp_gpu.cpp
@@ -349,7 +349,7 @@ void SignalInterrupt(InterruptId interrupt_id) {
349/// Executes the next GSP command 349/// Executes the next GSP command
350static void ExecuteCommand(const Command& command, u32 thread_id) { 350static void ExecuteCommand(const Command& command, u32 thread_id) {
351 // Utility function to convert register ID to address 351 // Utility function to convert register ID to address
352 auto WriteGPURegister = [](u32 id, u32 data) { 352 static auto WriteGPURegister = [](u32 id, u32 data) {
353 GPU::Write<u32>(0x1EF00000 + 4 * id, data); 353 GPU::Write<u32>(0x1EF00000 + 4 * id, data);
354 }; 354 };
355 355