Bug in Dashboard::AddString

Dashboard::AddString has a bug. It take the address of the address of the string.

memcpy(m_packPtr, (char*)&value, length);

should be

memcpy(m_packPtr, value, length);

KC