From 1353e2d2dc8cf794279f4bc8f9ae12eb31accc35 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 30 Apr 2004 23:02:23 +0000 Subject: Move from custom unsigned types to those provided by main config.h svn-id: r13687 --- saga/font.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'saga/font.h') diff --git a/saga/font.h b/saga/font.h index 1fda4f6248..7370e6b2a4 100644 --- a/saga/font.h +++ b/saga/font.h @@ -78,14 +78,14 @@ struct R_FONT_STYLE { R_FONT_HEADER hdr; FONT_CHAR_ENTRY fce[256]; - uchar *font_free_p; - uchar *font_p; + byte *font_free_p; + byte *font_p; }; struct R_FONT { - ulong font_rn; + uint32 font_rn; int font_id; int normal_loaded; @@ -93,7 +93,7 @@ struct R_FONT { int outline_loaded; R_FONT_STYLE *outline; - uchar *res_data; + byte *res_data; size_t res_len; }; @@ -112,7 +112,7 @@ struct R_FONT_MODULE { }; -int FONT_Load(ulong font_rn, int font_id); +int FONT_Load(uint32 font_rn, int font_id); static R_FONT_STYLE *FONT_CreateOutline(R_FONT_STYLE * src_font); -- cgit v1.2.3