Skip to content

Commit db53303

Browse files
committed
Double MAX_RENDER_COMMANDS
Following changes to the console code, it turned out that at very high resolutions, the large number of glyphs rendered would cause render commands to be dropped; avoid this by simply raising the maximum number of render commands.
1 parent dcbcb12 commit db53303

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

code/renderergl2/tr_local.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2364,7 +2364,7 @@ RENDERER BACK END COMMAND QUEUE
23642364
=============================================================
23652365
*/
23662366

2367-
#define MAX_RENDER_COMMANDS 0x40000
2367+
#define MAX_RENDER_COMMANDS 0x80000
23682368

23692369
typedef struct {
23702370
byte cmds[MAX_RENDER_COMMANDS];

0 commit comments

Comments
 (0)