renamed tx socket file in prep for new socket
This commit is contained in:
parent
852e23dc7c
commit
0a99879449
3 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ use log::{error, info};
|
|||
use tokio::runtime::Handle;
|
||||
use tokio_tungstenite::tungstenite::Message;
|
||||
|
||||
use crate::{joystick_loop::joystick_loop, socket_loop, ui_code::GuiUpdate};
|
||||
use crate::{joystick_loop::joystick_loop, camera_socket, ui_code::GuiUpdate};
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct MoveEvent {
|
||||
|
@ -79,7 +79,7 @@ impl<'a> CoordState<'a> {
|
|||
|
||||
self.to_socket = Some(to_socket);
|
||||
|
||||
socket_loop::socket_loop(
|
||||
camera_socket::socket_loop(
|
||||
conn,
|
||||
self.to_mec.clone(),
|
||||
socket_sender_rx,
|
||||
|
|
|
@ -9,7 +9,7 @@ use tokio::runtime;
|
|||
mod config;
|
||||
mod coordinator;
|
||||
mod joystick_loop;
|
||||
mod socket_loop;
|
||||
mod camera_socket;
|
||||
mod ui_code;
|
||||
const APP_ID: &str = "net.nickiel.joystick-controller-client";
|
||||
|
||||
|
|
Loading…
Reference in a new issue