diff --git a/src/main/scala/ocelot/desktop/graphics/ScreenViewport.scala b/src/main/scala/ocelot/desktop/graphics/ScreenViewport.scala index a5fcad6..e430a09 100644 --- a/src/main/scala/ocelot/desktop/graphics/ScreenViewport.scala +++ b/src/main/scala/ocelot/desktop/graphics/ScreenViewport.scala @@ -99,8 +99,7 @@ class ScreenViewport(private var _width: Int, private var _height: Int) extends GL11.glViewport(0, 0, _width, _height) GL11.glDisable(GL11.GL_SCISSOR_TEST) - val x = System.currentTimeMillis() % 1000 / 1000f - GL11.glClearColor(x, x, x, 1f) + GL11.glClearColor(0f, 0f, 0f, 1f) GL11.glClear(GL11.GL_COLOR_BUFFER_BIT) Spritesheet.texture.bind()