From 50b8ccd35071cceb545001a199f9dddfafab186c Mon Sep 17 00:00:00 2001 From: MayNL Date: Sat, 2 May 2026 23:30:02 -0400 Subject: [PATCH] Fixed oversight in custom cape icon code --- PCK-Studio/Controls/Editor/PckEditor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PCK-Studio/Controls/Editor/PckEditor.cs b/PCK-Studio/Controls/Editor/PckEditor.cs index ad4b03cd..a0a738a3 100644 --- a/PCK-Studio/Controls/Editor/PckEditor.cs +++ b/PCK-Studio/Controls/Editor/PckEditor.cs @@ -697,8 +697,8 @@ namespace PckStudio.Controls // this math is basically to ensure the face is stretched if the texture is improper Rectangle faceRect = new Rectangle( - (int)(depth * textureScaleX + depth * textureScaleX), - (int)(depth * textureScaleY + depth * textureScaleY), + (int)(depth * textureScaleX), + (int)(depth * textureScaleY), (int)(width * textureScaleX), (int)(height * textureScaleY) );