Browse Source

Merge pull request #13220 from dragmz/patch-1

reduce static memory usage
Rémi Verschelde 7 years ago
parent
commit
4feeca0021
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/command_queue_mt.h

+ 1 - 1
core/command_queue_mt.h

@@ -302,7 +302,7 @@ class CommandQueueMT {
 	/***** BASE *******/
 
 	enum {
-		COMMAND_MEM_SIZE_KB = 256 * 1024,
+		COMMAND_MEM_SIZE_KB = 256,
 		COMMAND_MEM_SIZE = COMMAND_MEM_SIZE_KB * 1024,
 		SYNC_SEMAPHORES = 8
 	};