mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 05:21:25 +12:00
Speculative fix for fmt::format
This commit is contained in:
parent
9a9455a696
commit
a2200bd01e
3 changed files with 4 additions and 4 deletions
|
@ -252,7 +252,7 @@ struct fmt::cfmt_src
|
|||
template <typename T>
|
||||
T get(std::size_t index) const
|
||||
{
|
||||
return reinterpret_cast<const T&>(args[index]);
|
||||
return *reinterpret_cast<const T*>(reinterpret_cast<const u8*>(args + index));
|
||||
}
|
||||
|
||||
void skip(std::size_t extra)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue