Skip to content

Commit

Permalink
Fix unix cfg check
Browse files Browse the repository at this point in the history
  • Loading branch information
PolyMeilex committed Jun 7, 2024
1 parent ab14cc9 commit f66a54f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neothesia/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ impl ApplicationHandler<NeothesiaEvent> for NeothesiaBootstrap {
.with_title("Neothesia")
.with_theme(Some(winit::window::Theme::Dark));

#[cfg(all(unix, not(apple)))]
#[cfg(all(unix, not(target_os = "macos")))]
{
use winit::platform::{
startup_notify::{
Expand Down

0 comments on commit f66a54f

Please sign in to comment.