aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/gsp_gpu.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-11 00:57:48 -0500
committerbunnei <bunneidev@gmail.com>2015-01-11 00:57:48 -0500
commitc6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c (patch)
tree8a5260f8e44f637f90e3c84565be04e4d84cedc3 /src/core/hle/service/gsp_gpu.cpp
parent463d0a373be11b6c117bfb0cc71418dfd5272679 (diff)
parent95be6ad7aead770666d97309e2e1aef9cfd808ec (diff)
Merge pull request #459 from archshift/logs
Small additions and fixes to logging
Diffstat (limited to 'src/core/hle/service/gsp_gpu.cpp')
-rw-r--r--src/core/hle/service/gsp_gpu.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/service/gsp_gpu.cpp b/src/core/hle/service/gsp_gpu.cpp
index 26a43217e..2b115240f 100644
--- a/src/core/hle/service/gsp_gpu.cpp
+++ b/src/core/hle/service/gsp_gpu.cpp
@@ -331,9 +331,6 @@ static void ExecuteCommand(const Command& command, u32 thread_id) {
/// This triggers handling of the GX command written to the command buffer in shared memory.
static void TriggerCmdReqQueue(Service::Interface* self) {
-
- LOG_TRACE(Service_GSP, "called");
-
// Iterate through each thread's command queue...
for (unsigned thread_id = 0; thread_id < 0x4; ++thread_id) {
CommandBuffer* command_buffer = (CommandBuffer*)GetCommandBuffer(thread_id);