mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
Fix a compile error for some of the platforms.
This commit is contained in:
parent
e660b2d848
commit
e3989cafad
@ -60,7 +60,7 @@ void WebServerSimple::_start() {
|
||||
err = server->listen(bind_port, bind_ip, use_ssl, ssl_key, ssl_cert);
|
||||
}
|
||||
|
||||
ERR_FAIL_COND_MSG(err != OK, TTR("Error starting HTTP server:") + "\n" + itos(err));
|
||||
ERR_FAIL_COND_MSG(err != OK, "Error starting HTTP server:" + "\n" + itos(err));
|
||||
}
|
||||
|
||||
void WebServerSimple::_stop() {
|
||||
|
Loading…
Reference in New Issue
Block a user