From 104b928e3aa5feafc5e9b3e20360a7b62ca60c82 Mon Sep 17 00:00:00 2001 From: derrod Date: Fri, 18 Dec 2020 17:26:51 +0100 Subject: [PATCH] [core] Increase default shared memory to 2048 MiB This should still be reasonable for most machines people are going to run games on, and means no manual increases are required for every game it has been previously needed for. --- legendary/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/core.py b/legendary/core.py index 11cf1a7..2fccb36 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -811,7 +811,7 @@ class LegendaryCore: self.log.debug(f'Using base URL: {base_url}') if not max_shm: - max_shm = self.lgd.config.getint('Legendary', 'max_memory', fallback=1024) + max_shm = self.lgd.config.getint('Legendary', 'max_memory', fallback=2048) if dl_optimizations or is_opt_enabled(game.app_name, new_manifest.meta.build_version): self.log.info('Download order optimizations are enabled.')