From 9d8ec4a73056f9490a1d07f964fcc460f4877999 Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Thu, 7 Oct 2021 22:45:42 +0200 Subject: [PATCH] Use p images instead of hero --- src/sync/sync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sync/sync.rs b/src/sync/sync.rs index b2fc5c7..b3432a7 100644 --- a/src/sync/sync.rs +++ b/src/sync/sync.rs @@ -56,7 +56,7 @@ fn fix_shortcut_icons(user: &SteamUsersInfo, shortcuts: &mut Vec) &shortcut.app_name, ); let new_icon = image_folder - .join(format!("{}_hero.png", app_id)) + .join(format!("{}p.png", app_id)) .to_string_lossy() .to_string(); shortcut.icon = new_icon;