From 97e62572109403eafb762003a09f103f7ae20567 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 13 Jan 2026 04:36:59 +0900 Subject: [PATCH] align --- engine/src/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/client.c b/engine/src/client.c index 6314ba0..1bfda76 100644 --- a/engine/src/client.c +++ b/engine/src/client.c @@ -58,9 +58,9 @@ static void scene(GSClient client) { for(i = -a; i <= a; i++) { int j; - pos[0] = i * 2; + pos[0] = i * 1.5; for(j = -a; j <= a; j++) { - pos[2] = j * 2; + pos[2] = j * 1.5; GSModelDraw(m, pos, rot); } }