mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-27 19:06:23 +02:00
Fix Setup
This commit is contained in:
parent
f091e6c5ea
commit
f66590203a
2 changed files with 2 additions and 2 deletions
Binary file not shown.
|
@ -66,7 +66,7 @@ struct SetupView: View {
|
|||
finished = false
|
||||
keysImported = Ryujinx.shared.checkIfKeysImported()
|
||||
print((Double(Ryujinx.shared.fetchFirmwareVersion()) ?? 0))
|
||||
firmImported = ((Double(Ryujinx.shared.fetchFirmwareVersion()) ?? 0) != 0)
|
||||
firmImported = (Ryujinx.shared.fetchFirmwareVersion() != "0")
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -371,7 +371,7 @@ struct SetupView: View {
|
|||
|
||||
print(Double(Ryujinx.shared.fetchFirmwareVersion()) ?? 0)
|
||||
|
||||
firmImported = ((Double(Ryujinx.shared.fetchFirmwareVersion()) ?? 0) != 0)
|
||||
firmImported = (Ryujinx.shared.fetchFirmwareVersion() != "0")
|
||||
alertMessage = "Firmware installed successfully"
|
||||
showAlert = true
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue