Hello, I'm trying to adjust the running speed via assembly in the game.
The game runs on armv8 base. My assembly code looks like this:
floatvalue = 0.06
~A8 MOV x8, #0xC28F
~A8 MOVK x8, #0x3D75, LSL #16
~A8 FMOV s0, w8
~A8 ret
The character should now run much slower, but it does not.
The character now runs much too fast . If I set the float value significantly higher, nothing changes.
I have checked the values with Inline Assembly in C. There they seem to be ok.
What else can be the problem ?
Thanks for your help.