From 78417186d150671f4f75a74cb529133db660577a Mon Sep 17 00:00:00 2001 From: Recrown Date: Mon, 4 Mar 2019 18:22:34 -0600 Subject: [PATCH] Another fix for 9 patch. --- RecrownedAthenaeum/SpecialTypes/NinePatch.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RecrownedAthenaeum/SpecialTypes/NinePatch.cs b/RecrownedAthenaeum/SpecialTypes/NinePatch.cs index 62d17e6..861661d 100644 --- a/RecrownedAthenaeum/SpecialTypes/NinePatch.cs +++ b/RecrownedAthenaeum/SpecialTypes/NinePatch.cs @@ -61,8 +61,8 @@ namespace RecrownedAthenaeum.SpecialTypes { patches[i].X += textureRegion.X + 1; patches[i].Y += textureRegion.Y + 1; - patches[i].Width--; - patches[i].Height--; + patches[i].Width -= 2; + patches[i].Height -= 2; } return patches; }