From 8d890cc705975ee7d1d6677cc2db57dfca42f70a Mon Sep 17 00:00:00 2001 From: kalsprite Date: Wed, 19 Aug 2026 18:04:34 -0700 Subject: [PATCH] fix typo --- core/math/cmplx/cmplx.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/cmplx/cmplx.odin b/core/math/cmplx/cmplx.odin index f5c572cc6..3a1c3f511 100644 --- a/core/math/cmplx/cmplx.odin +++ b/core/math/cmplx/cmplx.odin @@ -253,7 +253,7 @@ exp_complex64 :: proc "contextless" (x: complex64) -> complex64 { if re < 0 { return complex(0, math.copy_sign(0, im)) } else { - return complex(math.inf_f64(1.0), math.nan_f64()) + return complex(math.inf_f32(1.0), math.nan_f32()) } } case math.is_nan(re):