forked from MeloNX/MeloNX
RyuLDN (I hope)
This commit is contained in:
parent
538221ef79
commit
3ce5b7d4a0
Binary file not shown.
@ -45,7 +45,7 @@ class Ryujinx {
|
|||||||
var debuglogs: Bool
|
var debuglogs: Bool
|
||||||
var tracelogs: Bool
|
var tracelogs: Bool
|
||||||
var nintendoinput: Bool
|
var nintendoinput: Bool
|
||||||
var enableInternet: Bool
|
var ryuLDN: Bool
|
||||||
var listinputids: Bool
|
var listinputids: Bool
|
||||||
var fullscreen: Bool
|
var fullscreen: Bool
|
||||||
var memoryManagerMode: String
|
var memoryManagerMode: String
|
||||||
@ -61,7 +61,7 @@ class Ryujinx {
|
|||||||
debuglogs: Bool = false,
|
debuglogs: Bool = false,
|
||||||
tracelogs: Bool = false,
|
tracelogs: Bool = false,
|
||||||
nintendoinput: Bool = true,
|
nintendoinput: Bool = true,
|
||||||
enableInternet: Bool = false,
|
ryuLDN: Bool = false,
|
||||||
listinputids: Bool = false,
|
listinputids: Bool = false,
|
||||||
fullscreen: Bool = true,
|
fullscreen: Bool = true,
|
||||||
memoryManagerMode: String = "HostMappedUnsafe",
|
memoryManagerMode: String = "HostMappedUnsafe",
|
||||||
@ -77,7 +77,7 @@ class Ryujinx {
|
|||||||
self.debuglogs = debuglogs
|
self.debuglogs = debuglogs
|
||||||
self.tracelogs = tracelogs
|
self.tracelogs = tracelogs
|
||||||
self.nintendoinput = nintendoinput
|
self.nintendoinput = nintendoinput
|
||||||
self.enableInternet = enableInternet
|
self.ryuLDN = ryuLDN
|
||||||
self.listinputids = listinputids
|
self.listinputids = listinputids
|
||||||
self.fullscreen = fullscreen
|
self.fullscreen = fullscreen
|
||||||
self.vsync = vsync
|
self.vsync = vsync
|
||||||
@ -162,8 +162,8 @@ class Ryujinx {
|
|||||||
args.append("--correct-ons-controller")
|
args.append("--correct-ons-controller")
|
||||||
}
|
}
|
||||||
|
|
||||||
if config.enableInternet {
|
if config.ryuLDN {
|
||||||
args.append("--enable-internet-connection")
|
args.append("--lan-interface-id LdnRyu")
|
||||||
}
|
}
|
||||||
|
|
||||||
if config.disableShaderCache {
|
if config.disableShaderCache {
|
||||||
|
@ -61,6 +61,7 @@ struct SettingsView: View {
|
|||||||
Toggle("Enable Debug Logs", isOn: $config.debuglogs)
|
Toggle("Enable Debug Logs", isOn: $config.debuglogs)
|
||||||
Toggle("Enable Trace Logs", isOn: $config.tracelogs)
|
Toggle("Enable Trace Logs", isOn: $config.tracelogs)
|
||||||
}
|
}
|
||||||
|
|
||||||
Section(header: Text("CPU Mode").bold()) {
|
Section(header: Text("CPU Mode").bold()) {
|
||||||
HStack {
|
HStack {
|
||||||
Spacer()
|
Spacer()
|
||||||
@ -73,7 +74,9 @@ struct SettingsView: View {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Section(header: Text("Network").bold()) {
|
||||||
|
Toggle("Enable Ryujinx LDN", isOn: $config.ryuLDN)
|
||||||
|
}
|
||||||
|
|
||||||
Section(header: Text("Additional Settings")) {
|
Section(header: Text("Additional Settings")) {
|
||||||
//TextField("Game Path", text: $config.gamepath)
|
//TextField("Game Path", text: $config.gamepath)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user