From bd5a3f9466d880e10c48716822f18d012f25d641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Fri, 20 Aug 2021 18:01:43 +0200 Subject: [PATCH] Change _OS to OS --- Autoload/Autoload.gd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Autoload/Autoload.gd b/Autoload/Autoload.gd index 2ffbbb4..a9a3823 100644 --- a/Autoload/Autoload.gd +++ b/Autoload/Autoload.gd @@ -24,10 +24,10 @@ const alone_steps : Array = [ ] func _init(): - if ClassDB.class_exists("_OS"): - os = get_instance_from_name("_OS") + if ClassDB.class_exists("OS"): + os = get_instance_from_name("OS") else: - os = get_instance_from_name("_Platform") + os = get_instance_from_name("Platform") start_time = Time.get_ticks_msec()