From 0214c07f675fb9c526e7fe164613b5d3c23ea192 Mon Sep 17 00:00:00 2001 From: ansel <79257300125@ya.ru> Date: Sun, 18 Jun 2023 03:12:16 +0300 Subject: [PATCH] Change outer circle of multitouch to be branded disc --- src/nmania/ui/ng/NmaniaDisplay.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nmania/ui/ng/NmaniaDisplay.java b/src/nmania/ui/ng/NmaniaDisplay.java index 3761f32..bdcf62d 100644 --- a/src/nmania/ui/ng/NmaniaDisplay.java +++ b/src/nmania/ui/ng/NmaniaDisplay.java @@ -328,7 +328,7 @@ private final void DrawTouchEffect() { g.drawArc(x - 35, y - 35, 70, 70, 0, 360); g.drawArc(x - 40, y - 40, 80, 80, 0, 360); g.drawArc(x - 45, y - 45, 90, 90, 0, 360); - g.drawArc(x - 50, y - 50, 100, 100, 0, 360); + DrawDisc(x - 50, y - 50, 100, spinState); } } }