Changed GL clear color to black (from blue)

This commit is contained in:
Collin Smith 2019-03-04 00:03:18 -08:00
parent 4f6966b900
commit 7adf37f091

View File

@ -286,7 +286,9 @@ public class Client extends Game {
}
Gdx.gl.glDisable(GL20.GL_DEPTH_TEST);
Gdx.gl.glClearColor(0.0f, 0.0f, 1.0f, 1.0f);
final float color = 0;//0.025f;
Gdx.gl.glClearColor(color, color, color, 1.0f);
}
@Override