summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/XFStructs.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2025-03-15 15:31:38 +0100
committerGitHub <noreply@github.com>2025-03-15 15:31:38 +0100
commit8c7ab286f5b42d7f95b4d6c1369e2a11615a3a0b (patch)
treeadc97acc89e50fffe165f80e2f16f9c3d6900c96 /Source/Core/VideoCommon/XFStructs.cpp
parent3fb4084e25b1da3857d5d449dbc4417d731f3490 (diff)
parent6d44afc7dd129603401ce1a7ee4a059be1fbdda4 (diff)
Merge pull request #13181 from tygyh/Replace-'reinterpret_cast'
Replace 'reinterpret_cast' with 'static_cast'
Diffstat (limited to 'Source/Core/VideoCommon/XFStructs.cpp')
-rw-r--r--Source/Core/VideoCommon/XFStructs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/XFStructs.cpp b/Source/Core/VideoCommon/XFStructs.cpp
index d25d49495a..54adb0e4d3 100644
--- a/Source/Core/VideoCommon/XFStructs.cpp
+++ b/Source/Core/VideoCommon/XFStructs.cpp
@@ -267,7 +267,7 @@ void LoadIndexedXF(CPArray array, u32 index, u16 address, u8 size)
auto& fifo = system.GetFifo();
if (fifo.UseDeterministicGPUThread())
{
- newData = reinterpret_cast<u32*>(fifo.PopFifoAuxBuffer(buf_size));
+ newData = static_cast<u32*>(fifo.PopFifoAuxBuffer(buf_size));
}
else
{