summaryrefslogtreecommitdiff
path: root/src/com/github/junrar/unpack
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-10-19 12:07:19 +0400
committerAndrew Dolgov <[email protected]>2012-10-19 12:07:19 +0400
commit131df74570cdbccc69ed944b688191a2d24c541d (patch)
tree2bfdb5211a75e9998697dc9b9a19fb58d9131b67 /src/com/github/junrar/unpack
parent7b2c2700c7a76bf34eff76fbc984479c6555f65c (diff)
tweak rar decode window
Diffstat (limited to 'src/com/github/junrar/unpack')
-rw-r--r--src/com/github/junrar/unpack/decode/Compress.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/github/junrar/unpack/decode/Compress.java b/src/com/github/junrar/unpack/decode/Compress.java
index 114986a..12bf342 100644
--- a/src/com/github/junrar/unpack/decode/Compress.java
+++ b/src/com/github/junrar/unpack/decode/Compress.java
@@ -25,7 +25,7 @@ package com.github.junrar.unpack.decode;
*/
public class Compress {
public static final int CODEBUFSIZE = 0x4000;
- public static final int MAXWINSIZE = 0x10000;
+ public static final int MAXWINSIZE = 0x400000;
public static final int MAXWINMASK = (MAXWINSIZE-1);
public static final int LOW_DIST_REP_COUNT = 16;