Skip to content

Commit

Permalink
Implement 64mb Piece Sizes
Browse files Browse the repository at this point in the history
Closes #14
  • Loading branch information
SavageCore committed Jan 16, 2024
1 parent 78c6629 commit 4f0cd5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torf_gui/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
PROGRAM_NAME_VERSION = f"{PROGRAM_NAME} {__version__}"
CREATOR = f"torf-gui/{__version__} (https://github.com/SavageCore/torf-gui)"

PIECE_SIZES = [None] + [2**i for i in range(14, 26)]
PIECE_SIZES = [None] + [2**i for i in range(14, 27)]

if getattr(sys, "frozen", False):
_basedir = sys._MEIPASS
Expand Down

0 comments on commit 4f0cd5d

Please sign in to comment.