You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Improve slang, especially in user-visible parts
This commit is contained in:
@@ -213,7 +213,7 @@ Error StreamPeerTCPPosix::write(const uint8_t *p_data, int p_bytes, int &r_sent,
|
||||
|
||||
if (errno != EAGAIN) {
|
||||
|
||||
perror("shit?");
|
||||
perror("Nothing sent");
|
||||
disconnect_from_host();
|
||||
ERR_PRINT("Server disconnected!\n");
|
||||
return FAILED;
|
||||
@@ -270,7 +270,7 @@ Error StreamPeerTCPPosix::read(uint8_t *p_buffer, int p_bytes, int &r_received,
|
||||
|
||||
if (errno != EAGAIN) {
|
||||
|
||||
perror("shit?");
|
||||
perror("Nothing read");
|
||||
disconnect_from_host();
|
||||
ERR_PRINT("Server disconnected!\n");
|
||||
return FAILED;
|
||||
|
||||
Reference in New Issue
Block a user