changeset 80:ad6ebe886a21

worked out size of save files and reduced MAX_SAVE_SIZE to a more reasonable value
author Robert McIntyre <rlm@mit.edu>
date Thu, 08 Mar 2012 22:29:11 -0600
parents 7ab48d728ee4
children db8e0a563c8e
files java/src/com/aurellem/gb/Gb.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/java/src/com/aurellem/gb/Gb.java	Thu Mar 08 21:55:40 2012 -0600
     1.2 +++ b/java/src/com/aurellem/gb/Gb.java	Thu Mar 08 22:29:11 2012 -0600
     1.3 @@ -36,7 +36,7 @@
     1.4  
     1.5      public static native void loadState(ByteBuffer buffer, int size);
     1.6  
     1.7 -    public static final int MAX_SAVE_SIZE = 90000;
     1.8 +    public static final int MAX_SAVE_SIZE = 20000;
     1.9  
    1.10      public static ByteBuffer createDirectByteBuffer(int capacity){
    1.11  	byte[] zeros = new byte[capacity];