Explorar el Código

Merge pull request #10728 from t895/game-hash

android: Use autogenerated hash code function for Game class
bunnei hace 3 años
padre
commit
5144ca8bb6
Se han modificado 1 ficheros con 12 adiciones y 7 borrados
  1. 12 7
      src/android/app/src/main/java/org/yuzu/yuzu_emu/model/Game.kt

+ 12 - 7
src/android/app/src/main/java/org/yuzu/yuzu_emu/model/Game.kt

@@ -26,13 +26,18 @@ class Game(
         if (other !is Game)
             return false
 
-        return title == other.title
-                && description == other.description
-                && regions == other.regions
-                && path == other.path
-                && gameId == other.gameId
-                && company == other.company
-                && isHomebrew == other.isHomebrew
+        return hashCode() == other.hashCode()
+    }
+
+    override fun hashCode(): Int {
+        var result = title.hashCode()
+        result = 31 * result + description.hashCode()
+        result = 31 * result + regions.hashCode()
+        result = 31 * result + path.hashCode()
+        result = 31 * result + gameId.hashCode()
+        result = 31 * result + company.hashCode()
+        result = 31 * result + isHomebrew.hashCode()
+        return result
     }
 
     companion object {