aboutsummaryrefslogtreecommitdiff
path: root/saga/scene.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/scene.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/scene.h')
-rw-r--r--saga/scene.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/saga/scene.h b/saga/scene.h
index 06035008e3..cc5af55644 100644
--- a/saga/scene.h
+++ b/saga/scene.h
@@ -71,10 +71,10 @@ enum SAGA_RESOURCE_TYPES {
struct R_SCENE_RESLIST {
- ulong res_number;
+ uint32 res_number;
int res_type;
- uchar *res_data;
+ byte *res_data;
size_t res_data_len;
};
@@ -105,10 +105,10 @@ struct SCENE_IMAGE {
int h;
int p;
- uchar *buf;
+ byte *buf;
size_t buf_len;
- uchar *res_buf;
+ byte *res_buf;
size_t res_len;
PALENTRY pal[256];
@@ -126,7 +126,7 @@ struct SCENE_ANIMINFO {
struct R_SCENE_QUEUE {
- ulong scene_n;
+ uint32 scene_n;
R_SCENE_DESC *scene_desc;
int load_flag;
@@ -181,9 +181,9 @@ int
SCENE_Load(int scene,
int load_flag, R_SCENE_PROC scene_proc, R_SCENE_DESC *);
-int LoadSceneDescriptor(ulong res_number);
+int LoadSceneDescriptor(uint32 res_number);
-int LoadSceneResourceList(ulong res_number);
+int LoadSceneResourceList(uint32 res_number);
int ProcessSceneResources(void);