diff options
author | Max Horn | 2009-02-25 19:30:11 +0000 |
---|---|---|
committer | Max Horn | 2009-02-25 19:30:11 +0000 |
commit | c199c6c6c4652306c4660e4736f054175e4f0b25 (patch) | |
tree | d39a2cb0141a3d38f47c133587db5144215645ca /engines | |
parent | b990add13e6009fc7c6fa9f40f60bfb36a14ba68 (diff) | |
download | scummvm-rg350-c199c6c6c4652306c4660e4736f054175e4f0b25.tar.gz scummvm-rg350-c199c6c6c4652306c4660e4736f054175e4f0b25.tar.bz2 scummvm-rg350-c199c6c6c4652306c4660e4736f054175e4f0b25.zip |
cleanup
svn-id: r38885
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/gfx/operations.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/sci/gfx/operations.h b/engines/sci/gfx/operations.h index 16f84dbeab..decd90e077 100644 --- a/engines/sci/gfx/operations.h +++ b/engines/sci/gfx/operations.h @@ -65,7 +65,7 @@ struct gfx_text_handle_t { ** All operations perform clipping relative to state->clip_zone. */ -typedef enum { +enum gfx_box_shade_t { GFX_BOX_SHADE_FLAT, GFX_BOX_SHADE_RIGHT, GFX_BOX_SHADE_LEFT, @@ -80,7 +80,7 @@ typedef enum { GFX_BOX_SHADE_RIGHT_UP, GFX_BOX_SHADE_LEFT_UP #endif -} gfx_box_shade_t; +}; struct gfx_dirty_rect_t { @@ -131,9 +131,6 @@ struct gfx_state_t { gfxr_pic_t *pic, *pic_unscaled; /* The background picture and its unscaled equivalent */ gfx_dirty_rect_t *dirty_rects; /* Dirty rectangles */ - - void *internal_state; /* Internal interpreter information */ - }; |