diff --git a/src/scan/launchers/lutris.rs b/src/scan/launchers/lutris.rs index 5078339..75be843 100644 --- a/src/scan/launchers/lutris.rs +++ b/src/scan/launchers/lutris.rs @@ -74,8 +74,8 @@ impl Pending { // Lutris updates the spec, but not the database, // so we prefer the spec version. prefix: spec.prefix.or(db.prefix), - platform: spec.platform.or(db.platform), - install_dir: db.install_dir.or(spec.install_dir), + platform: db.platform.or(spec.platform), + install_dir: spec.install_dir.or(db.install_dir), } } }