View Single Post
[BWD]Uwe
Junior Member
Join Date: Oct 2006
Old 10-16-2006 , 18:49   Re: PsychoViewer 1.2
Reply With Quote #32

Hi,
i found a little bug in the routine
PsychoViewer::LoadWebLinks()

For the (chat) word, the end character "\0" will not be set, change line

if (buffer[x] == ' ') { bword = false; y = 0; continue; }

to

if (buffer[x] == ' ') { bword = false; word[x]='\0';y = 0; continue; }



Workarround:
sort the chatwords/keywords in links.ini by their length.
First the shortest one, last the one with the most characters.

SrcVersion: psychoviewer12_src.zip
[BWD]Uwe is offline