Fix type rewriting bug.

This commit is contained in:
Jonathan Naylor
2020-04-06 16:00:55 +01:00
parent 8f39ca9ece
commit efed75f160
2 changed files with 5 additions and 1 deletions

View File

@@ -72,6 +72,8 @@ PROCESS_RESULT CRewriteDynTGRF::process(CDMRData& data, bool trace)
data.setFLCO(FLCO_GROUP);
processMessage(data);
if (type == DT_TERMINATOR_WITH_LC) {
m_rewriteNet->setCurrentTG(0U);
m_currentTG = 0U;
@@ -92,6 +94,8 @@ PROCESS_RESULT CRewriteDynTGRF::process(CDMRData& data, bool trace)
data.setFLCO(FLCO_GROUP);
processMessage(data);
if (type == DT_TERMINATOR_WITH_LC) {
m_rewriteNet->setCurrentTG(dstId);
m_currentTG = dstId;

View File

@@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20200405";
const char* VERSION = "20200406";
#endif