From f45636a491a50c5847b92a51912e6e19f21af98f Mon Sep 17 00:00:00 2001 From: Guy Perfect Date: Tue, 19 Nov 2024 22:22:34 -0600 Subject: [PATCH] VIP bugfix --- core/vip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vip.c b/core/vip.c index c0e33ce..d8d92be 100644 --- a/core/vip.c +++ b/core/vip.c @@ -1013,7 +1013,7 @@ static void vipDrawAffine(VB *sim, World *world) { y1 = world->gy; if (y1 >= 224) return; - y2 = y1 + world->height; + y2 = world->gy + world->height; if (y2 <= 0) return; if (y1 < 0)