diff options
author | dragmz <dragmz@gmail.com> | 2017-11-23 21:16:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-23 21:16:18 +0100 |
commit | b20bb8615fe2e99485bfb8e8f422ef23e5f38028 (patch) | |
tree | c68f18f5f04d337ca05f191c5b2cfc04dc00bbce /core | |
parent | 3a33725014169ce51d6ac581a4dce3b97a60da00 (diff) |
reduce static memory usage
fixes #13217
Diffstat (limited to 'core')
-rw-r--r-- | core/command_queue_mt.h | 2 |
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 }; |