From 23d651bbad510f14484cf1c0a8081ffff890565e Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Tue, 28 Jan 2025 12:03:11 -0500 Subject: Working overlay --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.rs') 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(); -- cgit v1.2.3