diff options
| author | Scott Mansell <phiren@gmail.com> | 2026-09-06 12:06:17 +1200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-06 12:06:17 +1200 |
| commit | ef0038ddedef11bcbe85b071b0d9edf5bc17a828 (patch) | |
| tree | 96f5afa922a7248f45c003671961e1aa5af0a0a0 /Source/Core/VideoCommon | |
| parent | f0862e12e18c75f508aa5423f8726bf5b39d8e8d (diff) | |
| parent | e4349ae1791dec688d91c6813eeadf049a8c73ec (diff) | |
Merge pull request #14842 from linkmauve/pe-token-2-bytes
VideoCommon: Use correct size for PE token
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/BPStructs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp index 180bc86151..72b43e8731 100644 --- a/Source/Core/VideoCommon/BPStructs.cpp +++ b/Source/Core/VideoCommon/BPStructs.cpp @@ -212,7 +212,7 @@ static void BPWritten(PixelShaderManager& pixel_shader_manager, XFStateManager& system.GetPixelEngine().SetToken(static_cast<u16>(bp.newvalue & 0xFFFF), false, cycles_into_future); } - DEBUG_LOG_FMT(VIDEO, "SetPEToken {:#06X}", bp.newvalue & 0xFFFF); + DEBUG_LOG_FMT(VIDEO, "SetPEToken {:#04X}", bp.newvalue & 0xFFFF); return; } case BPMEM_PE_TOKEN_INT_ID: // Pixel Engine Interrupt Token ID @@ -228,7 +228,7 @@ static void BPWritten(PixelShaderManager& pixel_shader_manager, XFStateManager& system.GetPixelEngine().SetToken(static_cast<u16>(bp.newvalue & 0xFFFF), true, cycles_into_future); } - DEBUG_LOG_FMT(VIDEO, "SetPEToken + INT {:#06X}", bp.newvalue & 0xFFFF); + DEBUG_LOG_FMT(VIDEO, "SetPEToken + INT {:#04X}", bp.newvalue & 0xFFFF); return; } |
