This commit is contained in:
lizzie
2026-04-01 16:39:54 +00:00
parent 959ef253c6
commit e669d3cf04
6 changed files with 23 additions and 30 deletions
+2 -2
View File
@@ -21,11 +21,11 @@ struct EmulationGame : Comparable, Hashable, Identifiable {
hasher.combine(title)
}
static func < (lhs: EmulationGame, rhs: Yuzu) -> Bool {
static func < (lhs: EmulationGame, rhs: EmulationGame) -> Bool {
lhs.title < rhs.title
}
static func == (lhs: EmulationGame, rhs: Yuzu) -> Bool {
static func == (lhs: EmulationGame, rhs: EmulationGame) -> Bool {
lhs.title == rhs.title
}
}