mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-13 04:37:02 +00:00
Fix headless mode
Fix the error `Error setting value to option 'gdb-stub-port': Check if Option or Value attribute values are set properly for the given type.` https://github.com/commandlineparser/commandline/issues/612
This commit is contained in:
parent
a09568d1b7
commit
45bf443c01
1 changed files with 1 additions and 1 deletions
|
|
@ -390,7 +390,7 @@ namespace Ryujinx.Headless
|
|||
[Option("enable-gdb-stub", Required = false, Default = false, HelpText = "Enables the GDB stub so that a developer can attach a debugger to the emulated process.")]
|
||||
public bool EnableGdbStub { get; set; }
|
||||
|
||||
[Option("gdb-stub-port", Required = false, Default = 55555, HelpText = "Specifies which TCP port the GDB stub listens on.")]
|
||||
[Option("gdb-stub-port", Required = false, Default = (ushort)55555, HelpText = "Specifies which TCP port the GDB stub listens on.")]
|
||||
public ushort GdbStubPort { get; set; }
|
||||
|
||||
[Option("suspend-on-start", Required = false, Default = false, HelpText = "Suspend execution when starting an application.")]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue