mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-02 15:45:58 +00:00
Arm64Emitter: Get rid of a pointer cast
This commit is contained in:
parent
018c85c248
commit
2630752ffe
2 changed files with 8 additions and 5 deletions
|
@ -359,11 +359,7 @@ private:
|
|||
void EncodeLoadStoreUnscaled(u32 size, u32 op, ARM64Reg Rt, ARM64Reg Rn, s32 imm);
|
||||
|
||||
protected:
|
||||
inline void Write32(u32 value)
|
||||
{
|
||||
*(u32*)m_code = value;
|
||||
m_code += 4;
|
||||
}
|
||||
void Write32(u32 value);
|
||||
|
||||
public:
|
||||
ARM64XEmitter()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue