mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-21 23:18:11 +00:00
Fixed a colour palette issue with autumn yellow pipes
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 9.6 KiB |
@@ -846,7 +846,7 @@ layout_mode = 2
|
||||
|
||||
[node name="RegenROM" parent="PanelContainer/MarginContainer/VBoxContainer/Data" instance=ExtResource("9_t6b48")]
|
||||
layout_mode = 2
|
||||
title = "Delete Generated Resource Pack"
|
||||
title = "Reverify ROM"
|
||||
|
||||
[node name="Control" type="Control" parent="PanelContainer"]
|
||||
custom_minimum_size = Vector2(24, 0)
|
||||
|
@@ -8,9 +8,10 @@ func _ready() -> void:
|
||||
Global.get_node("GameHUD").hide()
|
||||
var validRomFound = false
|
||||
for i in args:
|
||||
if(is_valid_rom((i))):
|
||||
on_file_dropped(args)
|
||||
validRomFound = true
|
||||
if i.is_valid_filename():
|
||||
if(is_valid_rom((i))):
|
||||
on_file_dropped(args)
|
||||
validRomFound = true
|
||||
if(!validRomFound):
|
||||
get_window().files_dropped.connect(on_file_dropped)
|
||||
await get_tree().physics_frame
|
||||
|
Reference in New Issue
Block a user