summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/XFStructs.cpp
diff options
context:
space:
mode:
authorDr. Dystopia <jonis9898@hotmail.com>2024-07-24 06:24:51 +0200
committerDr. Dystopia <jonis9898@hotmail.com>2024-11-08 07:26:47 +0100
commit6d44afc7dd129603401ce1a7ee4a059be1fbdda4 (patch)
tree40118d5b05c1b88e035877eb0b4824fb49dcfe1b /Source/Core/VideoCommon/XFStructs.cpp
parent53ede795a2a7406872f0f5c872c7f67bd22f65e4 (diff)
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
{