Greetings,
I had a problem with my alist command. I have well over 250 areas and
the alist command only lists 178 or so.
I figure it's the size of buffer.
How does one increase the buffer size. Ive tried the following
In recycle.c
/* buffer sizes */
const int buf_size[MAX_BUF_LIST] =
{
16,32,64,128,256,1024,2048,4096,8192,16384,32768
};
I added the new one 32768
In recycle.h
Changed MAX_BUF_LIST and MAX_BUF
From
#define MAX_BUF 16384
#define MAX_BUF_LIST 10
to
#define MAX_BUF 32768
#define MAX_BUF_LIST 11
When I do a fresh make..open the mud and go into the command that I
changed it for.
Nothing happens. Except the CPU goes up.
Am I missing something?
Keith