Skip to content

Commit

Permalink
Fix EX_UnicodeStringConst size
Browse files Browse the repository at this point in the history
Co-authored-by: LongerWarrior <[email protected]>
  • Loading branch information
trumank and LongerWarrior committed Jul 28, 2024
1 parent d2965dc commit ba3dad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SummaryGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ Lines Stringify(KismetExpression exp, ref uint index, List<Reference> referenced
case EX_UnicodeStringConst e:
{
lines = new Lines("EX_" + e.Inst + " " + e.Value);
index += 1 + (uint) (e.Value.Length + 1) * 2;
index += (uint) (e.Value.Length + 1) * 2;
if (top) referencedAddresses.Add(new Reference(index, ReferenceType.Normal));
break;
}
Expand Down

0 comments on commit ba3dad5

Please sign in to comment.