From fd3e568c8190fa49602088a313661f36e6e22824 Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Fri, 18 May 2018 17:30:52 +0200 Subject: [PATCH] Delay setting of low detail mode To not change low detail flag before sounds are loaded, delay it to be set only when arriving at login screen to not end up with corrupted sound data. Fixes: #696 Signed-off-by: Tomas Slusny --- .../runelite/client/plugins/lowmemory/LowMemoryPlugin.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/lowmemory/LowMemoryPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/lowmemory/LowMemoryPlugin.java index 039be92e82..0c8f6000df 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/lowmemory/LowMemoryPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/lowmemory/LowMemoryPlugin.java @@ -41,12 +41,6 @@ public class LowMemoryPlugin extends Plugin @Inject private Client client; - @Override - protected void startUp() throws Exception - { - client.changeMemoryMode(true); - } - @Override protected void shutDown() throws Exception {