summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorlinkmauve <linkmauve@linkmauve.fr>2026-09-06 09:35:33 +0200
committerGitHub <noreply@github.com>2026-09-06 09:35:33 +0200
commita2efdf1197be8132674b90fe9cf4761df39752ed (patch)
tree9f4fec2662ce83cdc0291685236d7dda96920283 /Source
parent982e8d183d8df64b641a9809ec2f3b193f94e5e5 (diff)
parent3e95d0fc16c53f3c51b6469c9419d05ca4b3401a (diff)
Merge pull request #14847 from linkmauve/pe-token-2-bytesHEADmaster
Revert "VideoCommon: Use correct size for PE token"
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/VideoCommon/BPStructs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp
index 72b43e8731..180bc86151 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 {:#04X}", bp.newvalue & 0xFFFF);
+ DEBUG_LOG_FMT(VIDEO, "SetPEToken {:#06X}", 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 {:#04X}", bp.newvalue & 0xFFFF);
+ DEBUG_LOG_FMT(VIDEO, "SetPEToken + INT {:#06X}", bp.newvalue & 0xFFFF);
return;
}