This commit is contained in:
Ino 2025-09-12 05:17:41 +09:00
parent a2a0f1698c
commit 314a43e54e
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public class AlbumUI : uScrollViewMgr
{ {
curGirl += add; curGirl += add;
if (curGirl > 8) curGirl = 1; if (curGirl > 8) curGirl = 1;
else if (curGirl < 0) curGirl = 8; else if (curGirl < 1) curGirl = 8;
Set(); Set();
} }
} }