mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 06:10:03 -06:00
fix ARM64 again
This commit is contained in:
@ -333,7 +333,7 @@ Compiler::Compiler()
|
|||||||
{
|
{
|
||||||
if (!(reg == W4 || (reg >= W19 && reg <= W26)))
|
if (!(reg == W4 || (reg >= W19 && reg <= W26)))
|
||||||
continue;
|
continue;
|
||||||
ARM64Reg rdMapped = W0 + reg;
|
ARM64Reg rdMapped = (ARM64Reg)reg;
|
||||||
PatchedStoreFuncs[consoleType][num][size][reg] = GetRXPtr();
|
PatchedStoreFuncs[consoleType][num][size][reg] = GetRXPtr();
|
||||||
if (num == 0)
|
if (num == 0)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user