changeset 650:14d13880daa9

Sleeping in tavern crash fixed - memory allocation rised to 48mb
author Nomad
date Mon, 11 Mar 2013 23:52:33 +0200
parents 0e368c04acfb
children 2bf48d11d742
files mm7_2.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mm7_2.cpp	Mon Mar 11 23:43:52 2013 +0200
+++ b/mm7_2.cpp	Mon Mar 11 23:52:33 2013 +0200
@@ -9932,10 +9932,10 @@
   }
   
   pAllocator = Allocator::Create();
-  if (!pAllocator->Initialize(26 * 1024))
+  if (!pAllocator->Initialize(48 * 1024))
   {
     MessageBoxW(nullptr,
-                L"Unable to Allocate 26Mb of RAM",
+                L"Unable to Allocate 48Mb of RAM",
                 L"More RAM Memory Required", MB_ICONEXCLAMATION);
     return false;
   }