Browse Source

Be explicit when writing numerical values

Daniele Bartolini 12 years ago
parent
commit
2269b0aeac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      engine/World.cpp

+ 1 - 1
engine/World.cpp

@@ -33,7 +33,7 @@ namespace crown
 
 
 //-----------------------------------------------------------------------------
 //-----------------------------------------------------------------------------
 World::World()
 World::World()
-	: m_allocator(default_allocator(), 1048576)
+	: m_allocator(default_allocator(), 1024 * 1024)
 	, m_is_init(false)
 	, m_is_init(false)
 {
 {
 }
 }