cwVectOps.h : Fixed bug in vop::print() where columns where not printed correctly.

This commit is contained in:
kevin 2024-07-31 17:15:47 -04:00
parent 3de88dfc32
commit 1b4ad4f45f

View File

@ -34,7 +34,7 @@ namespace cw
newline_fl = false;
if( (n+1) % colN == 0 )
if( (i+1) % colN == 0 )
{
cwLogPrint("\n");
newline_fl = true;