Fantasy_051

This commit is contained in:
Ino 2025-09-10 05:48:26 +09:00
parent 83fd105276
commit 515167bbcd
2 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ public class CollectionPanel : uScrollViewMgr
public void OnClick_Arrow(int add) public void OnClick_Arrow(int add)
{ {
CurAlbumType += add; CurAlbumType += add;
if (CurAlbumType < 1) CurAlbumType = 10; if (CurAlbumType < 1) CurAlbumType = 3;
else if (CurAlbumType > 10) CurAlbumType = 1; else if (CurAlbumType > 3) CurAlbumType = 1;
Set_UI(); Set_UI();
} }