1
0
forked from MeloNX/MeloNX

Update src/MeloNX/MeloNX/App/Views/GamesList/GameListView.swift

This commit is contained in:
Fen 2025-02-14 10:13:09 +00:00
parent 08ee9b18ea
commit e79fd46b23

View File

@ -18,6 +18,7 @@ struct GameLibraryView: View {
// @State var importDLCs = false
@State private var searchText = ""
@State private var isSearching = false
@State private var showRMFWAlert = false
@AppStorage("recentGames") private var recentGamesData: Data = Data()
@State private var recentGames: [Game] = []
@Environment(\.colorScheme) var colorScheme
@ -168,13 +169,23 @@ struct GameLibraryView: View {
} else {
Menu("Firmware") {
Button {
Button {
showRMFWAlert = true
} label: {
Text("Remove Firmware")
}
.alert(isPresented: $showRMFWAlert) {
Alert(
title: Text("Are you sure?"),
message: Text("Do you really want to remove the firmware?"),
primaryButton: .destructive(Text("Yes")) {
Ryujinx.shared.removeFirmware()
let firmware = Ryujinx.shared.fetchFirmwareVersion()
firmwareversion = (firmware == "" ? "0" : firmware)
} label: {
Text("Remove Firmware")
}
},
secondaryButton: .cancel()
)
}
Button {
let game = Game(containerFolder: URL(string: "none")!, fileType: .item, fileURL: URL(string: "MiiMaker")!, titleName: "Mii Maker", titleId: "0", developer: "Nintendo", version: firmwareversion)