summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AndroidManifest.xml2
-rw-r--r--src/com/github/junrar/unpack/decode/Compress.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 8b09531..8af5b37 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttcomics"
- android:versionCode="20"
+ android:versionCode="21"
android:versionName="1.0.9" >
<uses-sdk
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;