From ce4d9b57955f9be989c86b248f624485ab5377e2 Mon Sep 17 00:00:00 2001 From: SuperEric <75173041+SuperEric1@users.noreply.github.com> Date: Fri, 6 Feb 2026 17:11:08 -0300 Subject: [PATCH] Adjust backingImage size --- source/funkin/ui/freeplay/FreeplayState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/funkin/ui/freeplay/FreeplayState.hx b/source/funkin/ui/freeplay/FreeplayState.hx index 06580469159..1aa4edf4332 100644 --- a/source/funkin/ui/freeplay/FreeplayState.hx +++ b/source/funkin/ui/freeplay/FreeplayState.hx @@ -465,8 +465,8 @@ class FreeplayState extends MusicBeatSubState add(blackOverlayBullshitLOLXD); // used to mask the text lol! // this makes the texture sizes consistent, for the angle shader - backingImage.setGraphicSize(0, FlxG.height); - blackOverlayBullshitLOLXD.setGraphicSize(0, FlxG.height); + backingImage.setGraphicSize(0, FlxG.height + 1); + blackOverlayBullshitLOLXD.setGraphicSize(0, FlxG.height + 1); backingImage.updateHitbox(); blackOverlayBullshitLOLXD.updateHitbox();