diff --git a/editors/MemoryDesigner/ConnectivityGraphFactory.cpp b/editors/MemoryDesigner/ConnectivityGraphFactory.cpp index 9be9821d1..63f9e1380 100644 --- a/editors/MemoryDesigner/ConnectivityGraphFactory.cpp +++ b/editors/MemoryDesigner/ConnectivityGraphFactory.cpp @@ -755,7 +755,7 @@ QSharedPointer ConnectivityGraphFactory::createInterfaceD { memoryReference = busInterface->getMemoryMapRef(); } - else if (busMode == General::MIRRORED_SLAVE && !busInterface->getMirroredSlave()->getRemapAddresses()->isEmpty()) + else if ((busMode == General::MIRRORED_SLAVE || busMode == General::MIRRORED_TARGET) && !busInterface->getMirroredSlave()->getRemapAddresses()->isEmpty()) { interfaceNode->setRemapAddress(expressionParser_->parseExpression( busInterface->getMirroredSlave()->getRemapAddresses()->first()->remapAddress_)); diff --git a/version.h b/version.h index 9ca219e91..706069cbd 100644 --- a/version.h +++ b/version.h @@ -10,20 +10,20 @@ #ifndef VERSIONNO__H #define VERSIONNO__H -#define VERSION_FULL 3.13.643.0 +#define VERSION_FULL 3.13.646.0 #define VERSION_BASEYEAR 0 -#define VERSION_DATE "2024-10-04" -#define VERSION_TIME "13:44:51" +#define VERSION_DATE "2024-10-10" +#define VERSION_TIME "14:09:32" #define VERSION_MAJOR 3 #define VERSION_MINOR 13 -#define VERSION_BUILDNO 643 +#define VERSION_BUILDNO 646 #define VERSION_EXTEND 0 -#define VERSION_FILE 3,13,643,0 -#define VERSION_PRODUCT 3,13,643,0 -#define VERSION_FILESTR "3,13,643,0" -#define VERSION_PRODUCTSTR "3,13,643,0" +#define VERSION_FILE 3,13,646,0 +#define VERSION_PRODUCT 3,13,646,0 +#define VERSION_FILESTR "3,13,646,0" +#define VERSION_PRODUCTSTR "3,13,646,0" #endif