Fix cli for bios/g-sync

This commit is contained in:
Luke D. Jones
2021-11-01 10:57:40 +13:00
parent 5041019d77
commit 1d977199f3

View File

@@ -536,8 +536,8 @@ fn handle_bios_option(
.collect();
for line in usage.iter().filter(|line| {
!line.contains("sound") && !supported.post_sound_toggle
|| !line.contains("GPU") && !supported.dedicated_gfx_toggle
line.contains("sound") && supported.post_sound_toggle
|| line.contains("GPU") && supported.dedicated_gfx_toggle
}) {
println!("{}", line);
}