From a471e89220e1d4d8688c7e5a457cf5c1c2c62992 Mon Sep 17 00:00:00 2001 From: Colin Edwards Date: Sun, 8 Oct 2023 21:03:52 -0500 Subject: [PATCH] Remove changes to main in cappy --- Cappy3ds/src/main.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Cappy3ds/src/main.rs b/Cappy3ds/src/main.rs index 1092885..e04113c 100644 --- a/Cappy3ds/src/main.rs +++ b/Cappy3ds/src/main.rs @@ -1,9 +1,5 @@ mod capture; -mod render; -use futures::executor; -pub use render::render::State; fn main() { - // let mut res = State::new_from_visual(); - // let mut v = executor::block_on(res); + capture::do_capture(); }