mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-28 01:39:05 +00:00
fix
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user