All pastes #2119629 Raw Edit

Someone

public text v1 · immutable
#2119629 ·published 2012-02-18 07:32 UTC
rendered paste body
	if (key == K_UPARROW || key == K_RIGHTARROW) // FS: Remember last 3 things we typed
	{
		cls.key_dest = key_message;


if (chat_index != chat_tail) {
	chat_index = (chat_index - 1) % MAX_CHAT;
	strcpy (chat_buffer, chat_buffer_array[chat_index]);
}
		chat_bufferlen = (strlen(chat_buffer));
		return;
	}