summaryrefslogtreecommitdiff
path: root/source/sys_win.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/sys_win.c')
-rw-r--r--source/sys_win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sys_win.c b/source/sys_win.c
index 85cf9f8..1980827 100644
--- a/source/sys_win.c
+++ b/source/sys_win.c
@@ -539,7 +539,7 @@ void *Hunk_Alloc( mempool_t *pool, size_t size ) {
void *buf;
// round to cacheline
- size = ( size + 31 ) & ~ 31;
+ size = ( size + 63 ) & ~63;
pool->cursize += size;
if( pool->cursize > pool->maxsize )