From 158ea7b4d65bc1261ebb5fe67d9f7b71ca7baaec Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 3 Feb 2025 15:33:12 -0600 Subject: [PATCH] misc: chore: logged coordinate is a decimal not a whole number --- src/Ryujinx/Utilities/PlayReport.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Ryujinx/Utilities/PlayReport.cs b/src/Ryujinx/Utilities/PlayReport.cs index de553e618..a5528277a 100644 --- a/src/Ryujinx/Utilities/PlayReport.cs +++ b/src/Ryujinx/Utilities/PlayReport.cs @@ -44,10 +44,10 @@ namespace Ryujinx.Ava.Utilities { try { - return (long)value.BoxedValue switch + return (double)value.BoxedValue switch { - > 800 => "Exploring the Sky Islands", - < -201 => "Exploring the Depths", + > 800d => "Exploring the Sky Islands", + < -201d => "Exploring the Depths", _ => "Roaming Hyrule" }; }