From e1fb5fd939bb47e56bc5e4cfeea57df378ad1b29 Mon Sep 17 00:00:00 2001 From: Casey_Nelson <91818705+CaseyNelson314@users.noreply.github.com> Date: Fri, 20 May 2022 01:12:40 +0900 Subject: [PATCH] change margin value --- othelo_prosessing/othelo_prosessing.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/othelo_prosessing/othelo_prosessing.pde b/othelo_prosessing/othelo_prosessing.pde index 1f07caf..c85c8e2 100644 --- a/othelo_prosessing/othelo_prosessing.pde +++ b/othelo_prosessing/othelo_prosessing.pde @@ -26,7 +26,7 @@ void setup() { for (int i=0; i<8; i++)for (int j=0; j<8; j++)board[i][j] = new Botton(); frameRate(60); win.setWindow(WINDOW_WIDTH, WINDOW_HEIGHT, 1000, 1500); - win.margin(30); + win.margin(20); } void draw() {