summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index cfc5629..a05c2f7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,6 +1,6 @@
extern crate rusty_microphone;
-#[cfg(not(target_os = "emscripten"))]
+#[cfg(not(target_arch = "wasm32"))]
fn main() {
use rusty_microphone::*;
@@ -11,7 +11,7 @@ fn main() {
}
}
-#[cfg(target_os = "emscripten")]
+#[cfg(target_arch = "wasm32")]
fn main() {
- println!("Hello Emscripten");
+ println!("Hello Wasm");
}