Bugfix for #5603 - event que 'stuck' when holding down shift modifier

when sculpting

This bug was caused by the main event queue overflowing. This commit fixes the
bug by increasing the size of the main event queue from 256 events to 4096
events.
This commit is contained in:
Ben Batt 2007-01-31 11:24:13 +00:00
parent 9eb240282b
commit 1e8e779e6a

@ -35,7 +35,7 @@
#ifndef BIF_MAINQUEUE_H
#define BIF_MAINQUEUE_H
#define MAXQUEUE 256
#define MAXQUEUE 4096
unsigned short mainqtest (void);
unsigned short mainqread (short *val, char *ascii);