Fix typo in loading overlay

This commit is contained in:
drdev
2015-06-13 16:38:07 +00:00
parent 520a44196a
commit a0c72866ac
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ public class OnlineChatScreen extends FScreen implements IOnlineChatInterface {
}
});
}
private void sendMessage() {
String message = txtSendMessage.getText();
if (message.isEmpty()) { return; }

View File

@@ -48,7 +48,7 @@ public class OnlineLobbyScreen extends LobbyScreen implements IOnlineLobby {
}
final boolean joinServer = url.length() > 0;
final String caption = joinServer ? "Starting server..." : "Connecting to server...";
final String caption = joinServer ? "Connecting to server..." : "Starting server...";
LoadingOverlay.show(caption, new Runnable() {
@Override
public void run() {