Skip to content

Commit

Permalink
Hide mag circle if mag is high enough
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurumaker72 committed Feb 1, 2024
1 parent 0d409fb commit fedc40b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/TAS.lua
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ return {
x = Mupen_lua_ugui.internal.remap(Joypad.input.X, -128, 128, 0, 1),
y = Mupen_lua_ugui.internal.remap(-Joypad.input.Y, -128, 128, 0, 1),
},
mag = Settings.goal_mag / 128
mag = Settings.goal_mag >= 127 and 0 or Settings.goal_mag / 128
})

local atan_strain = Mupen_lua_ugui.toggle_button({
Expand Down

0 comments on commit fedc40b

Please sign in to comment.