Upped uitext buffer to 255 chars to allow for longer messages, buffer overflow sometimes occurs with combinations of CAP-LOCKS and grid.

This commit is contained in:
Simon 2010-12-06 23:12:49 +00:00
parent 1a7ff13d61
commit 0dee48278f

View File

@ -1027,8 +1027,8 @@ int main(int argc, char *argv[])
#ifdef BETA
int is_beta = 0;
#endif
char uitext[48] = "";
char heattext[64] = "";
char uitext[255] = "";
char heattext[128] = "";
int currentTime = 0;
int FPS = 0;
int pastFPS = 0;