This commit is contained in:
Tyler Wilding
2022-04-27 20:11:10 -04:00
parent fd0c64825a
commit f21da5527f
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@
#include "common/cross_sockets/XSocketServer.h"
#include "deci_common.h"
#include <condition_variable>
/// @brief Basic implementation of a DECI2 server.
/// Works with deci2.cpp(sceDeci2) to implement the networking on target
+1 -1
View File
@@ -86,7 +86,7 @@ void ReplServer::ping_response() {
std::string ping = fmt::format("Connected to OpenGOAL v{}.{} nREPL!",
versions::GOAL_VERSION_MAJOR, versions::GOAL_VERSION_MINOR);
lock();
auto bytes_written = write_to_socket(accepted_socket, ping.c_str(), ping.size());
write_to_socket(accepted_socket, ping.c_str(), ping.size());
unlock();
}