summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_processor.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-07-23 01:20:54 +0200
committerSubv <subv2112@gmail.com>2015-07-23 18:47:34 +0200
commit6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0 (patch)
tree5e8a1e33d8697550fc7a8eee76755be4bd65015a /src/video_core/command_processor.cpp
parentMerge pull request #968 from Subv/texture_filtering (diff)
downloadyuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar
yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.gz
yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.bz2
yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.lz
yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.xz
yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.zst
yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/command_processor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index 8b10d7340..92ba8754f 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -50,7 +50,7 @@ static inline void WritePicaReg(u32 id, u32 value, u32 mask) {
regs[id] = (old_value & ~mask) | (value & mask);
if (g_debug_context)
- g_debug_context->OnEvent(DebugContext::Event::CommandLoaded, reinterpret_cast<void*>(&id));
+ g_debug_context->OnEvent(DebugContext::Event::PicaCommandLoaded, reinterpret_cast<void*>(&id));
DebugUtils::OnPicaRegWrite(id, regs[id]);
@@ -428,7 +428,7 @@ static inline void WritePicaReg(u32 id, u32 value, u32 mask) {
VideoCore::g_renderer->hw_rasterizer->NotifyPicaRegisterChanged(id);
if (g_debug_context)
- g_debug_context->OnEvent(DebugContext::Event::CommandProcessed, reinterpret_cast<void*>(&id));
+ g_debug_context->OnEvent(DebugContext::Event::PicaCommandProcessed, reinterpret_cast<void*>(&id));
}
void ProcessCommandList(const u32* list, u32 size) {