Skip to content

Commit

Permalink
fix alignment issue caused by texture size being reported incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixaurora committed Aug 13, 2024
1 parent bb964d5 commit 8601cfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class MeowPlayingToast implements ToastData {
public static final ResourcePath TEXTURE = KitTunes.resource("textures/gui/sprites/toast/meow_playing.png");

public static ToastBackground BACKGROUND = new ToastBackground(
new ToastBackgroundAppearance(GuiTexture.of(TEXTURE, Size.of(32, 32)), Point.of(23, 6), Size.of(6, 9)),
new ToastBackgroundAppearance(GuiTexture.of(TEXTURE, Size.of(33, 32)), Point.of(23, 6), Size.of(6, 9)),
Point.of(3, 3), Point.of(25, 3), true, Point.of(25, 12), 159, 4, 2);

private final Track track;
Expand Down

0 comments on commit 8601cfc

Please sign in to comment.