mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2026-05-07 01:21:43 +00:00
Fix Linux CI
This commit is contained in:
parent
140ae6cc32
commit
9aa484e852
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@ extern "C" void recomp_get_camera_inputs(uint8_t* rdram, recomp_context* ctx) {
|
|||
|
||||
recomp::get_right_analog(&x, &y);
|
||||
|
||||
float magnitude = std::sqrtf(x * x + y * y);
|
||||
float magnitude = sqrtf(x * x + y * y);
|
||||
|
||||
if (magnitude < radial_deadzone) {
|
||||
*x_out = 0.0f;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue