Browse Source

Fix a bug

Panagiotis Christopoulos Charitos 10 years ago
parent
commit
3c1655f28b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/renderer/MainRenderer.cpp

+ 1 - 1
src/renderer/MainRenderer.cpp

@@ -46,7 +46,7 @@ Error MainRenderer::create(
 
 	m_alloc = HeapAllocator<U8>(allocCb, allocCbUserData);
 	m_frameAlloc = StackAllocator<U8>(allocCb, allocCbUserData,
-		1024 * 1024 * 1);
+		1024 * 1024 * 10, 1.0);
 
 	// Init default FB
 	m_width = config.getNumber("width");