Skip to content

Commit 69d6f69

Browse files
committed
add missing changes
1 parent 76b975a commit 69d6f69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/sys_dll.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
#define ONE_HUNDRED_TWENTY_EIGHT_MB (128 * 1024 * 1024)
7676

7777
ConVar mem_min_heapsize( "mem_min_heapsize", "48", FCVAR_INTERNAL_USE, "Minimum amount of memory to dedicate to engine hunk and datacache (in mb)" );
78-
ConVar mem_max_heapsize( "mem_max_heapsize", "256", FCVAR_INTERNAL_USE, "Maximum amount of memory to dedicate to engine hunk and datacache (in mb)" );
78+
ConVar mem_max_heapsize( "mem_max_heapsize", "576", FCVAR_INTERNAL_USE, "Maximum amount of memory to dedicate to engine hunk and datacache (in mb)" );
7979
ConVar mem_max_heapsize_dedicated( "mem_max_heapsize_dedicated", "64", FCVAR_INTERNAL_USE, "Maximum amount of memory to dedicate to engine hunk and datacache, for dedicated server (in mb)" );
8080

8181
#define MINIMUM_WIN_MEMORY (unsigned)(mem_min_heapsize.GetInt()*1024*1024)
@@ -809,7 +809,7 @@ static CThreadFastMutex g_SpewMutex;
809809

810810
static void AddSpewRecord( char const *pMsg )
811811
{
812-
#if !defined( _X360 )
812+
#if !defined( _X360 ) && !defined(_RETAIL)
813813
AUTO_LOCK( g_SpewMutex );
814814

815815
static bool s_bReentrancyGuard = false;

0 commit comments

Comments
 (0)