Up initial buffer size to 512

This commit is contained in:
James Roseborough
2008-04-24 00:52:38 +00:00
parent 2454606c41
commit 2e17f19628

View File

@@ -77,7 +77,7 @@ public class LoadState {
LuaState L;
/** Read buffer */
private byte[] buf = new byte[4];
private byte[] buf = new byte[512];
private static int[] EMPTY_INT_ARRAY = {};