From 922c83d6e190d29cc46b0f403ceddda5d18c2e42 Mon Sep 17 00:00:00 2001 From: Matt Harrison Date: Wed, 15 Nov 2023 04:34:40 +0000 Subject: [PATCH] Converted main scene name to lowercase to match on-disk name --- scenes/ui/loading_screen.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/ui/loading_screen.gd b/scenes/ui/loading_screen.gd index ca6c7c1..9ce630e 100644 --- a/scenes/ui/loading_screen.gd +++ b/scenes/ui/loading_screen.gd @@ -4,7 +4,7 @@ extends Node @onready var loading_label = %LoadingLabel @onready var loading_sprite = %LoadingSprite -var main_scene_path = "res://Scenes/main.tscn" +var main_scene_path = "res://scenes/main.tscn" var loading_progress = [] var scene_load_status = 0 var main_scene: PackedScene