From 4236d93aae16bd5e5cf63256fd7617961da49204 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 17 Jan 2017 10:33:55 +0100 Subject: GRAPHICS: Fix FOND loading --- graphics/fonts/macfont.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'graphics/fonts/macfont.h') diff --git a/graphics/fonts/macfont.h b/graphics/fonts/macfont.h index 40a54f2087..c357346c29 100644 --- a/graphics/fonts/macfont.h +++ b/graphics/fonts/macfont.h @@ -65,10 +65,10 @@ private: uint16 _ffFamID; uint16 _ffFirstChar; uint16 _ffLastChar; - uint16 _ffAscent; - uint16 _ffDescent; - uint16 _ffLeading; - uint16 _ffWidMax; + int16 _ffAscent; + int16 _ffDescent; + int16 _ffLeading; + int16 _ffWidMax; uint32 _ffWTabOff; uint32 _ffKernOff; uint32 _ffStylOff; @@ -90,10 +90,10 @@ private: struct BBoxEntry { uint16 _style; - uint16 _left; - uint16 _bottom; - uint16 _right; - uint16 _top; + int16 _left; + int16 _bottom; + int16 _right; + int16 _top; }; uint16 _ffNumBBoxes; -- cgit v1.2.3