Skip to content
Snippets Groups Projects
Commit 65140ccc authored by Stefano Grisendi's avatar Stefano Grisendi
Browse files

small bug fix

parent 21260ab7
No related branches found
No related tags found
1 merge request!13Dev
......@@ -594,17 +594,17 @@ public class LobbyView extends View{
@Override
public void render(float dt) {
Gdx.gl.glClearColor(1, 1, 1, 1);
/*
updateAvatarTimer+= dt;
if(refreshLobbyTimer >= 1) {
lobbyRefresh();
//lobbyRefresh();
refreshLobbyTimer=0;
}
else {
refreshLobbyTimer += dt;
}
*/
if(startFadeFromWhiteToBlank){
whiteImage.setColor(1, 1, 1, alphaFadeValue);
alphaFadeValue -= dt/fadeTransitionLength;
......
......@@ -73,6 +73,7 @@ public class NetworkController {
for(Connection c : connections){
c.sendTCP(command);
}
break;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment