mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
MOVP2R linux buildfix attempt
This commit is contained in:
parent
7e736172db
commit
8e513ec38a
1 changed files with 1 additions and 1 deletions
|
@ -776,7 +776,7 @@ public:
|
|||
|
||||
// Load pointers without casting
|
||||
template <class T> void MOVP2R(ARMReg reg, T *val) {
|
||||
MOVI2R(reg, (u32)(void *)val);
|
||||
MOVI2R(reg, (u32)(intptr_t)(void *)val);
|
||||
}
|
||||
|
||||
void ADDI2R(ARMReg rd, ARMReg rs, u32 val, ARMReg scratch);
|
||||
|
|
Loading…
Add table
Reference in a new issue