changed frame.setResizable() to surface.setResizable()

This commit is contained in:
Victor Giers
2017-06-20 19:18:30 +02:00
parent d21ad0329f
commit 4388754bad

View File

@@ -28,7 +28,7 @@ void setup() {
frameRate(24);
size(960, 540);
//fullScreen;
frame.setResizable(true);
surface.setResizable(true);
smooth();
drop = new SDrop(this);
backgroundImage = loadImage("assets/background.jpg");