diff options
author | Dave Parks <davep@lindenlab.com> | 2022-03-09 12:48:52 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-03-09 12:48:52 -0600 |
commit | 0e954a9afd7cc300bdd4cadfc25baa7f2607e5a4 (patch) | |
tree | 79c976e2bacf64f061f6cce20d248af89eb92103 /indra/newview/app_settings | |
parent | 2b2a5da0990def249dc028e0bb842843e51feed1 (diff) |
SL-16972 Per feedback from Ansariel, only bump up max heap size on 64-bit builds.
Diffstat (limited to 'indra/newview/app_settings')
-rw-r--r-- | indra/newview/app_settings/settings.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index ebf9bfcfe8..17071d4a65 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -6481,13 +6481,24 @@ <key>MaxHeapSize</key> <map> <key>Comment</key> - <string>Maximum heap size (GB)</string> + <string>Maximum heap size on 32-bit builds (GB)</string> <key>Persist</key> <integer>1</integer> <key>Type</key> <string>F32</string> <key>Value</key> - <real>4.0</real> + <real>1.6</real> + </map> + <key>MaxHeapSize64</key> + <map> + <key>Comment</key> + <string>Maximum heap size on 64-bit builds (GB)</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>F32</string> + <key>Value</key> + <real>16.0</real> </map> <key>MaxPersistentNotifications</key> <map> |