summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authordragmz <dragmz@gmail.com>2017-11-23 21:16:18 +0100
committerGitHub <noreply@github.com>2017-11-23 21:16:18 +0100
commitb20bb8615fe2e99485bfb8e8f422ef23e5f38028 (patch)
treec68f18f5f04d337ca05f191c5b2cfc04dc00bbce /core
parent3a33725014169ce51d6ac581a4dce3b97a60da00 (diff)
reduce static memory usage
fixes #13217
Diffstat (limited to 'core')
-rw-r--r--core/command_queue_mt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command_queue_mt.h b/core/command_queue_mt.h
index 697fec3fc4..af91ee0cd9 100644
--- a/core/command_queue_mt.h
+++ b/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
};