Fix the sound issues and crashes on some platforms
This commit updates misc/libphyslayer/physfsrwops.* files to the latest versions
provided by PhysFS project (https://github.com/icculus/physfs/tree/main/extras/).
use log::*;
use mio;
use crate::{
core::{server::HwServer, types::ClientId},
protocol::messages::HwProtocolMessage,
};
pub fn handle(_server: &mut HwServer, _client_id: ClientId, message: HwProtocolMessage) {
match message {
_ => warn!("Unknown command"),
}
}