mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 15:26:59 +00:00
Switch C-Style int cast to c++ style uint16 cast
This commit is contained in:
parent
093310c124
commit
73e9595d14
@ -222,7 +222,7 @@ void TNetwork::TCPServerMain() {
|
||||
Application::GracefullyShutdown();
|
||||
}
|
||||
Application::SetSubsystemStatus("TCPNetwork", Application::Status::Good);
|
||||
beammp_infof("Listening on {0} port {1}", ListenEp.address().to_string(), (int)ListenEp.port());
|
||||
beammp_infof("Listening on {0} port {1}", ListenEp.address().to_string(), static_cast<uint16_t>(ListenEp.port()));
|
||||
beammp_info("Vehicle event network online");
|
||||
do {
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user