From 3e9d8fa56cbd9c439023d4b3e765d1783f80978b Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Sun, 8 Oct 2023 14:41:30 +0530 Subject: [PATCH] platform update --- src/Util.hx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/Util.hx b/src/Util.hx index c3176e24..5325e923 100644 --- a/src/Util.hx +++ b/src/Util.hx @@ -442,15 +442,6 @@ class Util { } public static function getPlatform() { - #if js - return js.Browser.navigator.platform; - #end - #if hl - #if MACOS_BUNDLE - return "MacOS"; - #else - return "Windows"; - #end - #end + return "Android"; } }