diff --git a/Main.gdshader b/Main.gdshader index 97782dd..68b12e5 100644 --- a/Main.gdshader +++ b/Main.gdshader @@ -10,7 +10,7 @@ void vertex() { void fragment() { vec4 as = texture(screen_texture,SCREEN_UV); vec4 a2s = texture(TEXTURE,UV); - vec4 fart = a2s * (0.1 + as.bgra); + vec4 fart = a2s * (0.1 + as.brga); COLOR = fart * intensity; } diff --git a/PlaylistDisplay.tscn b/PlaylistDisplay.tscn index 8ca9e2b..5577120 100644 --- a/PlaylistDisplay.tscn +++ b/PlaylistDisplay.tscn @@ -53,7 +53,7 @@ autowrap_mode = 0 [node name="Directory" type="Label" parent="HSplitContainer/VBoxContainer"] layout_mode = 2 -text = "directory not found" +text = "Directory" label_settings = SubResource("LabelSettings_ky8oc") clip_text = true diff --git a/playlist_display.gd b/playlist_display.gd index 64a182f..3ed238e 100644 --- a/playlist_display.gd +++ b/playlist_display.gd @@ -39,7 +39,7 @@ func CorrectlyName(): if !PlaylistLocation == "": directory.text = PlaylistLocation else: - directory.text = "directory not found" + directory.text = "Directory not found" push_error("Directory not found!")