From 160b2532ffdcd384d778e452ed449ea1a9288441 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Mon, 1 Jul 2024 16:02:47 +0200 Subject: [PATCH] fix module --- src/emulate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emulate.rs b/src/emulate.rs index 69a3e76..ddc6c79 100644 --- a/src/emulate.rs +++ b/src/emulate.rs @@ -62,7 +62,7 @@ pub async fn create_backend( #[cfg(windows)] EmulationBackend::Windows => Ok(Box::new(windows::WindowsEmulation::new()?)), #[cfg(target_os = "macos")] - EmulationBackend::MacOs => Ok(Box::new(windows::MacOSEmulation::new()?)), + EmulationBackend::MacOs => Ok(Box::new(macos::MacOSEmulation::new()?)), EmulationBackend::Dummy => Ok(Box::new(dummy::DummyEmulation::new())), }; }