From 1b4ad4f45fd661bfcc438711ca2541901246a244 Mon Sep 17 00:00:00 2001 From: kevin Date: Wed, 31 Jul 2024 17:15:47 -0400 Subject: [PATCH] cwVectOps.h : Fixed bug in vop::print() where columns where not printed correctly. --- cwVectOps.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwVectOps.h b/cwVectOps.h index 12cf55b..41f73e0 100644 --- a/cwVectOps.h +++ b/cwVectOps.h @@ -34,7 +34,7 @@ namespace cw newline_fl = false; - if( (n+1) % colN == 0 ) + if( (i+1) % colN == 0 ) { cwLogPrint("\n"); newline_fl = true;