diff options
| author | Léo Lam <leo@leolam.fr> | 2020-11-18 11:10:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-18 11:10:48 +0100 |
| commit | 4eecb8fd1100db51a118c220c8b6a61fd672fc42 (patch) | |
| tree | 5c08b8d1d92b0b676a0c064d2200e4d6f64d5af5 /Source/Core/VideoCommon/PixelEngine.cpp | |
| parent | eb1581bbcc30b79f51b736d2f31c9cb0489b1162 (diff) | |
| parent | 3d9b2aa0055ded7ee74f6e4a73ff54acecf313a9 (diff) | |
Merge pull request #9248 from lioncash/video-fmt
VideoCommon: Migrate over to fmt
Diffstat (limited to 'Source/Core/VideoCommon/PixelEngine.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PixelEngine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp index d2a27c9d41..4e7f401f88 100644 --- a/Source/Core/VideoCommon/PixelEngine.cpp +++ b/Source/Core/VideoCommon/PixelEngine.cpp @@ -221,7 +221,7 @@ void RegisterMMIO(MMIO::Mapping* mmio, u32 base) m_Control.PEToken = 0; // this flag is write only m_Control.PEFinish = 0; // this flag is write only - DEBUG_LOG(PIXELENGINE, "(w16) CTRL_REGISTER: 0x%04x", val); + DEBUG_LOG_FMT(PIXELENGINE, "(w16) CTRL_REGISTER: {:#06x}", val); UpdateInterrupts(); })); @@ -294,7 +294,7 @@ static void RaiseEvent() // THIS IS EXECUTED FROM VIDEO THREAD void SetToken(const u16 token, const bool interrupt) { - DEBUG_LOG(PIXELENGINE, "VIDEO Backend raises INT_CAUSE_PE_TOKEN (btw, token: %04x)", token); + DEBUG_LOG_FMT(PIXELENGINE, "VIDEO Backend raises INT_CAUSE_PE_TOKEN (btw, token: {:04x})", token); std::lock_guard<std::mutex> lk(s_token_finish_mutex); @@ -308,7 +308,7 @@ void SetToken(const u16 token, const bool interrupt) // THIS IS EXECUTED FROM VIDEO THREAD (BPStructs.cpp) when a new frame has been drawn void SetFinish() { - DEBUG_LOG(PIXELENGINE, "VIDEO Set Finish"); + DEBUG_LOG_FMT(PIXELENGINE, "VIDEO Set Finish"); std::lock_guard<std::mutex> lk(s_token_finish_mutex); |
