Commit 66c9c909 authored by fallenstardust's avatar fallenstardust

fix卡包展示超过60张时划动最后一张详情时空指问题

parent 569c7e60
...@@ -29,7 +29,7 @@ public class DeckItem { ...@@ -29,7 +29,7 @@ public class DeckItem {
if(deckInfo.getMainCount() <= Constants.DECK_MAIN_MAX) { if(deckInfo.getMainCount() <= Constants.DECK_MAIN_MAX) {
MainEnd = MainStart + Constants.DECK_MAIN_MAX - 1; MainEnd = MainStart + Constants.DECK_MAIN_MAX - 1;
} else { } else {
MainEnd = MainStart + deckInfo.getMainCount() - 1; MainEnd = MainStart + deckInfo.getMainCount();
} }
ExtraLabel = 0; ExtraLabel = 0;
ExtraStart = 0; ExtraStart = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment