diff --git a/app/src/main/java/com/limelight/grid/assets/MemoryAssetLoader.java b/app/src/main/java/com/limelight/grid/assets/MemoryAssetLoader.java index c343e939..4fa26fca 100644 --- a/app/src/main/java/com/limelight/grid/assets/MemoryAssetLoader.java +++ b/app/src/main/java/com/limelight/grid/assets/MemoryAssetLoader.java @@ -7,7 +7,7 @@ import com.limelight.LimeLog; public class MemoryAssetLoader implements CachedAppAssetLoader.CachedLoader { private static final int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024); - private static final LruCache memoryCache = new LruCache(maxMemory / 4) { + private static final LruCache memoryCache = new LruCache(maxMemory / 8) { @Override protected int sizeOf(String key, Bitmap bitmap) { // Sizeof returns kilobytes