aboutsummaryrefslogtreecommitdiff
path: root/src/core/hw/lcd.cpp
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2018-01-11 20:33:56 -0700
committerJames Rowe <jroweboy@gmail.com>2018-01-12 19:11:04 -0700
commit389979018cce654b1ade0161abfc627832afe592 (patch)
tree90536049d982e4f5ee1df984b1d9da52db704e95 /src/core/hw/lcd.cpp
parent1d28b2e142f845773e2b90e267d9632e196a99b9 (diff)
Remove gpu debugger and get yuzu qt to compile
Diffstat (limited to 'src/core/hw/lcd.cpp')
-rw-r--r--src/core/hw/lcd.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hw/lcd.cpp b/src/core/hw/lcd.cpp
index 2aa89de18e..763ac1c4d8 100644
--- a/src/core/hw/lcd.cpp
+++ b/src/core/hw/lcd.cpp
@@ -8,7 +8,6 @@
#include "core/hw/hw.h"
#include "core/hw/lcd.h"
#include "core/tracer/recorder.h"
-#include "video_core/debug_utils/debug_utils.h"
namespace LCD {
@@ -40,14 +39,6 @@ inline void Write(u32 addr, const T data) {
}
g_regs[index] = static_cast<u32>(data);
-
- // Notify tracer about the register write
- // This is happening *after* handling the write to make sure we properly catch all memory reads.
- if (Pica::g_debug_context && Pica::g_debug_context->recorder) {
- // addr + GPU VBase - IO VBase + IO PBase
- Pica::g_debug_context->recorder->RegisterWritten<T>(
- addr + HW::VADDR_LCD - 0x1EC00000 + 0x10100000, data);
- }
}
// Explicitly instantiate template functions because we aren't defining this in the header: