changed some sprintfs to strcats, thanks to Fredrik Axelsson for the patch
This commit is contained in:
@@ -246,9 +246,9 @@ void CutEdgeloop(int numcuts)
|
|||||||
|
|
||||||
sprintf(msg,"Number of Cuts: %d",numcuts);
|
sprintf(msg,"Number of Cuts: %d",numcuts);
|
||||||
if(smooth){
|
if(smooth){
|
||||||
sprintf(msg,"%s (S)mooth: on",msg);
|
strcat(msg," (S)mooth: on");
|
||||||
} else {
|
} else {
|
||||||
sprintf(msg,"%s (S)mooth: off",msg);
|
strcat(msg," (S)mooth: off");
|
||||||
}
|
}
|
||||||
|
|
||||||
headerprint(msg);
|
headerprint(msg);
|
||||||
|
Reference in New Issue
Block a user