fonts: Fix the character count in some fonts

Michael Stefaniuc mstefani at winehq.org
Wed Sep 27 08:34:52 CDT 2017


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
Spotted as unrelated change while working on a fix for the build issue
with freetype 2.8.1.

The number of defined chars is smaller than the number of potential
characters in the bitmap font:
fonts/courier.sfd:BeginChars: 65536 477
fonts/courier.sfd:BitmapFont: 13 498 11 2 1
fonts/ms_sans_serif.sfd:BeginChars: 65536 504
fonts/ms_sans_serif.sfd:BitmapFont: 13 518 11 2 1
fonts/small_fonts.sfd:BeginChars: 65536 497
fonts/small_fonts.sfd:BitmapFont: 11 513 9 2 1
fonts/system.sfd:BeginChars: 65536 538
fonts/system.sfd:BitmapFont: 16 549 13 3 1
fonts/system.sfd:BitmapFont: 18 549 16 2 1




 fonts/courier.sfd       | 2 +-
 fonts/ms_sans_serif.sfd | 2 +-
 fonts/small_fonts.sfd   | 2 +-
 fonts/system.sfd        | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/fonts/courier.sfd b/fonts/courier.sfd
index c40af9b..dc79a21 100644
--- a/fonts/courier.sfd
+++ b/fonts/courier.sfd
@@ -52,7 +52,7 @@ FitToEm: 1
 WinInfo: 0 21 19
 OnlyBitmaps: 1
 TeXData: 1 0 0 346030 173015 115343 0 1048576 115343 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
-BeginChars: 65536 477
+BeginChars: 65536 498
 
 StartChar: space
 Encoding: 32 32 0
diff --git a/fonts/ms_sans_serif.sfd b/fonts/ms_sans_serif.sfd
index 36c90c7..fa847b5 100644
--- a/fonts/ms_sans_serif.sfd
+++ b/fonts/ms_sans_serif.sfd
@@ -55,7 +55,7 @@ AntiAlias: 0
 FitToEm: 1
 WinInfo: 43 43 21
 OnlyBitmaps: 1
-BeginChars: 65536 504
+BeginChars: 65536 518
 
 StartChar: space
 Encoding: 32 32 0
diff --git a/fonts/small_fonts.sfd b/fonts/small_fonts.sfd
index 2556168..53864ec 100644
--- a/fonts/small_fonts.sfd
+++ b/fonts/small_fonts.sfd
@@ -61,7 +61,7 @@ FitToEm: 1
 WinInfo: 0 61 20
 OnlyBitmaps: 1
 TeXData: 1 0 0 189792 94896 63264 0 1048576 63264 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
-BeginChars: 65536 497
+BeginChars: 65536 513
 
 StartChar: A
 Encoding: 65 65 0
diff --git a/fonts/system.sfd b/fonts/system.sfd
index 8da0f87..a622b10 100644
--- a/fonts/system.sfd
+++ b/fonts/system.sfd
@@ -51,7 +51,7 @@ AntiAlias: 0
 FitToEm: 1
 WinInfo: 0 21 19
 OnlyBitmaps: 1
-BeginChars: 65536 538
+BeginChars: 65536 549
 
 StartChar: space
 Encoding: 32 32 0
-- 
2.9.5




More information about the wine-patches mailing list