Skip to content

Commit

Permalink
feat: exclude .sbi files from game list (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
goweiwen committed Oct 23, 2023
1 parent ba5c4b5 commit 68f3435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allium-launcher/src/entry/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl Entry {
}

// Exclude DB
const EXCLUDE_EXTENSIONS: [&str; 1] = ["db"];
const EXCLUDE_EXTENSIONS: [&str; 2] = ["db", "sbi"];
if EXCLUDE_EXTENSIONS.contains(&extension.as_str()) {
return Ok(None);
}
Expand Down

0 comments on commit 68f3435

Please sign in to comment.