changed some sprintfs to strcats, thanks to Fredrik Axelsson for the patch

This commit is contained in:
Joseph Eagar 2009-07-28 17:23:45 +00:00
parent ddb09d3220
commit 94e06c9859

@ -246,9 +246,9 @@ void CutEdgeloop(int numcuts)
sprintf(msg,"Number of Cuts: %d",numcuts);
if(smooth){
sprintf(msg,"%s (S)mooth: on",msg);
strcat(msg," (S)mooth: on");
} else {
sprintf(msg,"%s (S)mooth: off",msg);
strcat(msg," (S)mooth: off");
}
headerprint(msg);