mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-14 08:12:16 +00:00
fix: PM4CmdWaitRegMem memory address
This commit is contained in:
parent
0d127a82dd
commit
073f931729
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ struct PM4CmdWaitRegMem {
|
||||||
|
|
||||||
template <typename T = u32*>
|
template <typename T = u32*>
|
||||||
T Address() const {
|
T Address() const {
|
||||||
return std::bit_cast<T>((uintptr_t(poll_addr_hi) << 32) | poll_addr_lo);
|
return std::bit_cast<T>((uintptr_t(poll_addr_hi) << 32) | (poll_addr_lo << 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 Reg() const {
|
u32 Reg() const {
|
||||||
|
|
Loading…
Add table
Reference in a new issue