Index: src/highscore.cpp =================================================================== --- src/highscore.cpp (revision 196) +++ src/highscore.cpp (working copy) @@ -214,19 +214,19 @@ bool end=false; bool loop=false; while(!end) { - memset(buff,256,'\0'); + memset(buff,'\0',256); sfile >> buff; if(std::string("").compare(buff)==0) { int n; redim(); n = level_hs_length-1; - memset(buff,256,'\0'); + memset(buff,'\0',256); sfile >> buff; level_hs[n].level.assign(fromOutputFormat(buff)); loop=true; for(_posts=0;loop&&_posts<10;_posts++) { char nick[256]; - memset(nick,256,'\0'); + memset(nick,'\0',256); int score; sfile >> nick >> score; if(std::string("").compare(nick)!=0) {