aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuartg <stuartg@google.com>2013-03-30 00:02:28 +0000
committerstuartg <stuartg@google.com>2013-03-30 00:02:28 +0000
commitfa679ca0ad41b3a4db61298af0c79e346340d6da (patch)
tree99722a9d2e728b635152538f8b5b0d71cded5d28
parent32c2de64ded57d8299f251b1eba7e91524ebaf3c (diff)
downloadsfntly-fa679ca0ad41b3a4db61298af0c79e346340d6da.tar.gz
ticket:24 fix usLastCharIndex setter
-rw-r--r--java/src/com/google/typography/font/sfntly/table/core/OS2Table.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/google/typography/font/sfntly/table/core/OS2Table.java b/java/src/com/google/typography/font/sfntly/table/core/OS2Table.java
index 0385522..079e0de 100644
--- a/java/src/com/google/typography/font/sfntly/table/core/OS2Table.java
+++ b/java/src/com/google/typography/font/sfntly/table/core/OS2Table.java
@@ -1004,7 +1004,7 @@ public final class OS2Table extends Table {
}
public void setUsLastCharIndex(int lastIndex) {
- this.internalWriteData().writeUShort(Offset.usFirstCharIndex.offset, lastIndex);
+ this.internalWriteData().writeUShort(Offset.usLastCharIndex.offset, lastIndex);
}
public int sTypoAscender() {