Merge remote-tracking branch 'origin/GP-5865_emteere_MultiWordReferenceDialogFix' into patch

This commit is contained in:
Ryan Kurtz 2025-07-25 09:43:52 -04:00
commit c56d41a353

View file

@ -148,7 +148,7 @@ public class AddressEvaluator extends ExpressionEvaluator {
long offset = longValue.getLongValue(); long offset = longValue.getLongValue();
AddressSpace space = getAddressSpace(); AddressSpace space = getAddressSpace();
try { try {
return space.getAddressInThisSpaceOnly(offset); return space.getAddressInThisSpaceOnly(offset*space.getAddressableUnitSize());
} }
catch (AddressOutOfBoundsException e) { catch (AddressOutOfBoundsException e) {
throw new ExpressionException(e.getMessage()); throw new ExpressionException(e.getMessage());