aboutsummaryrefslogtreecommitdiff
path: root/saga/scene.h
diff options
context:
space:
mode:
authorAndrew Kurushin2005-07-09 16:23:45 +0000
committerAndrew Kurushin2005-07-09 16:23:45 +0000
commitc2f1691bada2c0e945b206e5ed71752f0ba569b5 (patch)
tree6139934a412ce5c92aff1e4afbf3b2ee9b40769a /saga/scene.h
parentf7a6729a01ce8c07dddf4a7f7c0b25f8690e2c1a (diff)
downloadscummvm-rg350-c2f1691bada2c0e945b206e5ed71752f0ba569b5.tar.gz
scummvm-rg350-c2f1691bada2c0e945b206e5ed71752f0ba569b5.tar.bz2
scummvm-rg350-c2f1691bada2c0e945b206e5ed71752f0ba569b5.zip
gfx rearangement
code cleanups svn-id: r18523
Diffstat (limited to 'saga/scene.h')
-rw-r--r--saga/scene.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/saga/scene.h b/saga/scene.h
index 7ca0e488be..2233b05874 100644
--- a/saga/scene.h
+++ b/saga/scene.h
@@ -133,7 +133,7 @@ struct SceneEntryList {
}
};
-struct SCENE_IMAGE {
+struct SceneImage {
int loaded;
int w;
int h;
@@ -142,7 +142,7 @@ struct SCENE_IMAGE {
size_t buf_len;
byte *res_buf;
size_t res_len;
- PALENTRY pal[256];
+ PalEntry pal[256];
};
@@ -241,7 +241,7 @@ class Scene {
void initDoorsState();
void getBGInfo(BGInfo &bgInfo);
- int getBGPal(PALENTRY **pal);
+ int getBGPal(PalEntry **pal);
void getSlopes(int &beginSlope, int &endSlope);
void clearSceneQueue(void) {
@@ -289,8 +289,8 @@ class Scene {
int _resListEntries;
SCENE_RESLIST *_resList;
SceneProc *_sceneProc;
- SCENE_IMAGE _bg;
- SCENE_IMAGE _bgMask;
+ SceneImage _bg;
+ SceneImage _bgMask;
Common::Rect _sceneClip;
int _sceneDoors[SCENE_DOORS_MAX];