summaryrefslogtreecommitdiff
path: root/src/context.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-05-11 00:01:02 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-05-11 00:01:02 +0000
commite90acbb3dd052ae075bac3e3aa8c9a7ecbf889d1 (patch)
tree9bc257098f664dcc3aee4b7828354bab36838acc /src/context.h
parentdda72e9bf55f2d47d24a9df63d30ea3bcb92f1e3 (diff)
downloadttf2f-e90acbb3dd052ae075bac3e3aa8c9a7ecbf889d1.tar.gz
ttf2f-e90acbb3dd052ae075bac3e3aa8c9a7ecbf889d1.tar.bz2
Write out font metrics so that the first 256 glyphs match Acorn Latin 1.
Don't use this version -- it will produce inconsistent font data (outlines and encoding export needs the same thing doing to it) svn path=/trunk/tools/ttf2f/; revision=7460
Diffstat (limited to 'src/context.h')
-rw-r--r--src/context.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/context.h b/src/context.h
index f555fe3..157f31c 100644
--- a/src/context.h
+++ b/src/context.h
@@ -14,7 +14,8 @@ struct ttf2f_ctx {
size_t nglyphs;
struct glyph *glyphs;
- struct glyph *latin1tab[256 - 32]; /* Not chunk zero */
+ struct glyph *latin1tab[256];
+ size_t nlatin1;
};
#endif