From f0b6171b836c895f809449de99098dd13c833b16 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Sun, 8 Oct 2023 14:43:16 +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 3dbd0695..fe77d32c 100644 --- a/src/Util.hx +++ b/src/Util.hx @@ -391,15 +391,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"; } }