aboutsummaryrefslogtreecommitdiff
path: root/saga/font.h
diff options
context:
space:
mode:
authorEugene Sandulenko2004-04-30 23:02:23 +0000
committerEugene Sandulenko2004-04-30 23:02:23 +0000
commit1353e2d2dc8cf794279f4bc8f9ae12eb31accc35 (patch)
tree15b6bdcdce6449ce4f245cfd0fb200b8b2beeb30 /saga/font.h
parent06d9f402df8c1be896f0b369ceacf81d1488663d (diff)
downloadscummvm-rg350-1353e2d2dc8cf794279f4bc8f9ae12eb31accc35.tar.gz
scummvm-rg350-1353e2d2dc8cf794279f4bc8f9ae12eb31accc35.tar.bz2
scummvm-rg350-1353e2d2dc8cf794279f4bc8f9ae12eb31accc35.zip
Move from custom unsigned types to those provided by main config.h
svn-id: r13687
Diffstat (limited to 'saga/font.h')
-rw-r--r--saga/font.h10
1 files changed, 5 insertions, 5 deletions
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);