Skip to content

Commit

Permalink
fix #21
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Magara committed May 1, 2024
1 parent 7126642 commit 097de34
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions NCVC/TH_NCRead.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -949,10 +949,11 @@ int NC_GSeparater(INT_PTR nLine, CNCdata*& pDataResult)
GetNCValue(strWord.substr(1)) : atoi(strWord.substr(1).c_str());
}
g_ncArgv.nc.dwValFlags |= g_dwSetValFlags[nCode];
bNCval = TRUE;
if ( bNCsub ) {
// M98処理中ならPかLは値として処理しない
if ( nCode!=NCA_P && nCode!=NCA_L )
bNCval = TRUE;
if ( nCode==NCA_P || nCode==NCA_L )
bNCval = FALSE;
}
break;
} // End of switch()
Expand Down

0 comments on commit 097de34

Please sign in to comment.