summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/chessbox/gnuchess.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/apps/plugins/chessbox/gnuchess.c b/apps/plugins/chessbox/gnuchess.c
index 45ca66e778..879c083ce7 100644
--- a/apps/plugins/chessbox/gnuchess.c
+++ b/apps/plugins/chessbox/gnuchess.c
@@ -181,7 +181,8 @@ unsigned short PV,hint,Swag0,Swag1,Swag2,Swag3,Swag4;
181unsigned short hashkey; 181unsigned short hashkey;
182unsigned long hashbd; 182unsigned long hashbd;
183struct hashval hashcode[2][7][64]; 183struct hashval hashcode[2][7][64];
184struct hashentry huge *ttable,*ptbl; 184struct hashentry ttable[ttblsz];
185struct hashentry huge *ptbl;
185unsigned char history[8192]; 186unsigned char history[8192];
186 187
187short Mwpawn[64],Mbpawn[64],Mknight[2][64],Mbishop[2][64]; 188short Mwpawn[64],Mbpawn[64],Mknight[2][64],Mbishop[2][64];
@@ -2348,14 +2349,9 @@ void NewGame() {
2348 2349
2349/* ---- Initialize variables and reset board ---- */ 2350/* ---- Initialize variables and reset board ---- */
2350void GNUChess_Initialize ( void ) { 2351void GNUChess_Initialize ( void ) {
2351 int buffer_size;
2352 /* no malloc sir, 64K should be enough for now */
2353 /*char ttablearray[65536];*/
2354 /*ttable = (struct hashentry *)ttablearray;*/
2355 /*ttable = (struct hashentry *)malloc(ttblsz * 2352 /*ttable = (struct hashentry *)malloc(ttblsz *
2356 (unsigned long)sizeof(struct hashentry));*/ 2353 (unsigned long)sizeof(struct hashentry));*/
2357 buffer_size = ttblsz * sizeof(struct hashentry); 2354 /* no malloc, statically allocated */
2358 ttable = (struct hashentry *)rb->plugin_get_buffer( &buffer_size );
2359 Level = 1; 2355 Level = 1;
2360 OperatorTime = 0; 2356 OperatorTime = 0;
2361 TCmoves = 60; 2357 TCmoves = 60;