fix: Increase warning for max number of games when exporting to 255

This commit is contained in:
lantzelot-swe 2021-02-15 20:13:51 +01:00
parent 4873fb5198
commit 026854ce3f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ import se.lantz.util.GameListDataComparator;
public class ExportGamesSelectionPanel extends JPanel
{
private static final int MAX_GAMES = 226;
private static final int MAX_GAMES = 255;
private JPanel listPanel;
private JPanel buttonPanel;
private JButton addButton;