resizeCheck fix

This commit is contained in:
Anuken
2021-10-01 09:43:20 -04:00
parent 10b8a6e4a5
commit b2cd4e8ec0
2 changed files with 2 additions and 2 deletions

View File

@@ -376,7 +376,7 @@ public class Renderer implements ApplicationListener{
backgroundBuffer = new FrameBuffer(size, size);
}
if(resized || backgroundBuffer.resize(size, size)){
if(resized || backgroundBuffer.resizeCheck(size, size)){
backgroundBuffer.begin(Color.clear);
var params = state.rules.planetBackground;