summaryrefslogtreecommitdiff
path: root/game/misc.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'game/misc.rpy')
-rw-r--r--game/misc.rpy3
1 files changed, 2 insertions, 1 deletions
diff --git a/game/misc.rpy b/game/misc.rpy
index 9bf6ac0..290ca55 100644
--- a/game/misc.rpy
+++ b/game/misc.rpy
@@ -401,7 +401,8 @@ init python:
## Download the file, slowly as it may be...
max_value = int(r.headers.get('content-length', 0))
print "Blocks: %d" % max_value
- ## TODO: use blocks of 1024 on DSL and 1048576 on broadband?
+ ## TODO: use blocks of 1024 on DSL and 16384 on broadband?
+ ## 16KiB is the default for Torrent
block_size = 8192
max_value = max_value / block_size
statusmsg = "Downloading the zip file..."