diff options
| author | LLLL Colonq <llll@colonq> | 2025-01-28 12:03:11 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-01-28 12:03:11 -0500 |
| commit | 23d651bbad510f14484cf1c0a8081ffff890565e (patch) | |
| tree | 3645723cb9383bcf8ea3733d50d76ba1fe86e131 /src/main.rs | |
| parent | f448de77d84b985047a332150c0382adc1836899 (diff) | |
Working overlay
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 92a527b..8306cae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -mod newton; +mod common; #[cfg(not(target_arch = "wasm32"))] use clap::{command, Command}; @@ -24,7 +24,7 @@ pub async fn main() { .get_matches(); match matches.subcommand() { Some(("overlay", _cm)) => { - teleia::run("LCOLONQ", 1920, 1080, newton::overlay::Overlay::new).await; + teleia::run("LCOLONQ", 1920, 1080, true, common::overlay::Overlay::new).await; }, Some(("server", _cm)) => { env_logger::Builder::new().filter(None, log::LevelFilter::Info).init(); |
