mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-24 04:37:42 +02:00
misc: chore: logged coordinate is a decimal not a whole number
This commit is contained in:
parent
8bc3de8303
commit
158ea7b4d6
1 changed files with 3 additions and 3 deletions
|
@ -44,10 +44,10 @@ namespace Ryujinx.Ava.Utilities
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return (long)value.BoxedValue switch
|
return (double)value.BoxedValue switch
|
||||||
{
|
{
|
||||||
> 800 => "Exploring the Sky Islands",
|
> 800d => "Exploring the Sky Islands",
|
||||||
< -201 => "Exploring the Depths",
|
< -201d => "Exploring the Depths",
|
||||||
_ => "Roaming Hyrule"
|
_ => "Roaming Hyrule"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue