Originally Posted By: Reconnoiter

My quess would be that is cause I do:
Code:
str_cat(input_str,"                         ");  
inkey(input_str);

to have more space to type. And it doesn't seem to give any problems whatsoever (for like the last 3 months of testing) besides when using 'end' key .
Is there anyway to disable the 'end' key or to prevent this memory error?



dont understand why you are doing this .

Code:
//string off 255 spaces
	STRING* input=str_create("#255");
	inkey(input);
	while(1)
	{
		draw_text(input,0,0,COLOR_RED);
		wait(1);
	}



Compulsive compiler