mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 07:28:14 +00:00
Fixed a colour palette issue with autumn yellow pipes
This commit is contained in:
@@ -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