From 89cd7441c184d37f90d4d5311b348e938119765f Mon Sep 17 00:00:00 2001 From: zxd <zxdvslxy@gmail.com> Date: 星期六, 21 十月 2023 12:28:04 +0800 Subject: [PATCH] 修改最后一个单元格不会被读取的问题 --- MTerm1/MTerm1View.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/MTerm1/MTerm1View.cpp b/MTerm1/MTerm1View.cpp index 8a0bc34..866bc7f 100644 --- a/MTerm1/MTerm1View.cpp +++ b/MTerm1/MTerm1View.cpp @@ -3254,7 +3254,7 @@ stProgSection thisprogsec; //鍒ゆ柇瓒婄晫 - if (j + nNextX >= m_CellPerLine) + if (j + nNextX > m_CellPerLine) { continue; } -- Gitblit v1.9.1