Skip to content

Commit

Permalink
fix mic on linux adding --verbose arg godotengine/godot#33184
Browse files Browse the repository at this point in the history
  • Loading branch information
Nordup committed May 3, 2024
1 parent aae602a commit 61d9f7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion project/scripts/sandbox/sandbox_manager.gd
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ func start_sandbox_linux(gate: Gate) -> void:
var args = [
snbx_env.start.get_base_dir(), # cd to dir
"--main-pack", snbx_env.main_pack,
"--resolution", "%dx%d" % [render_result.width, render_result.height]
"--resolution", "%dx%d" % [render_result.width, render_result.height],
"--verbose"
]
Debug.logclr(snbx_env.start + " " + " ".join(args), Color.DARK_VIOLET)
sandbox_pid = OS.create_process(snbx_env.start, args)
Expand Down

0 comments on commit 61d9f7e

Please sign in to comment.