diff options
| author | 2015-07-13 21:39:58 +0200 | |
|---|---|---|
| committer | 2015-07-13 21:39:58 +0200 | |
| commit | 884b681ccaf3cb4057ca0ed0102e446736bb535f (patch) | |
| tree | 9359e9b88f0147879c672638d8c02960d2179d3a /src/core/hle | |
| parent | Merge pull request #859 from Apology11/master (diff) | |
| parent | CiTrace: Clean up initialization method. (diff) | |
| download | yuzu-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.cpp | 2 |
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 |
| 350 | static void ExecuteCommand(const Command& command, u32 thread_id) { | 350 | static 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 | ||