diff --git a/src/yuzu/game_list_p.h b/src/yuzu/game_list_p.h index 248855affc..df935022db 100644 --- a/src/yuzu/game_list_p.h +++ b/src/yuzu/game_list_p.h @@ -174,7 +174,8 @@ public: } bool operator<(const QStandardItem& other) const override { - return data(CompatNumberRole) < other.data(CompatNumberRole); + return data(CompatNumberRole).value() < + other.data(CompatNumberRole).value(); } };