summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/renderergl1/tr_cmds.c2
-rw-r--r--src/renderergl2/tr_cmds.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/renderergl1/tr_cmds.c b/src/renderergl1/tr_cmds.c
index 0ff7faee..58f199e3 100644
--- a/src/renderergl1/tr_cmds.c
+++ b/src/renderergl1/tr_cmds.c
@@ -148,7 +148,7 @@ returns NULL if there is not enough space for important commands
=============
*/
void *R_GetCommandBuffer( int bytes ) {
- return R_GetCommandBufferReserved( bytes, sizeof ( swapBuffersCommand_t ) );
+ return R_GetCommandBufferReserved( bytes, PAD( sizeof( swapBuffersCommand_t ), sizeof(void *) ) );
}
diff --git a/src/renderergl2/tr_cmds.c b/src/renderergl2/tr_cmds.c
index 4599511b..fe0ee82b 100644
--- a/src/renderergl2/tr_cmds.c
+++ b/src/renderergl2/tr_cmds.c
@@ -155,7 +155,7 @@ returns NULL if there is not enough space for important commands
=============
*/
void *R_GetCommandBuffer( int bytes ) {
- return R_GetCommandBufferReserved( bytes, sizeof ( swapBuffersCommand_t ) );
+ return R_GetCommandBufferReserved( bytes, PAD( sizeof( swapBuffersCommand_t ), sizeof(void *) ) );
}