Skip to content

Commit 452e921

Browse files
committed
fix: make this linux for now
windows :/
1 parent 6b7d41a commit 452e921

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/plumeimpactor/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ fn main() -> iced::Result {
5757
// We're going to try and try running the iced_daemon with different
5858
// environment variables so it can run properly
5959
// RE: https://github.com/claration/Impactor/issues/103, https://github.com/claration/Impactor/issues/90
60-
#[cfg(any(target_os = "linux", target_os = "windows"))]
60+
#[cfg(target_os = "linux")]
6161
check_gpu();
6262

6363
run_daemon()
6464
}
6565

66-
#[cfg(any(target_os = "linux", target_os = "windows"))]
66+
#[cfg(target_os = "linux")]
6767
fn check_gpu() {
6868
let instance = wgpu::Instance::default();
6969

0 commit comments

Comments
 (0)