diff options
author | Filippos Karapetis | 2009-02-15 14:26:33 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-02-15 14:26:33 +0000 |
commit | 24dc986944b1c663b0903965da482a5c03a9aa14 (patch) | |
tree | 10bed1561d1331d27b9eb22c405d07106f798d18 /engines/sci/include | |
parent | c3cd2b7f064ab34e668c4db58d6d7462841fa844 (diff) | |
download | scummvm-rg350-24dc986944b1c663b0903965da482a5c03a9aa14.tar.gz scummvm-rg350-24dc986944b1c663b0903965da482a5c03a9aa14.tar.bz2 scummvm-rg350-24dc986944b1c663b0903965da482a5c03a9aa14.zip |
Silenced a ton of warnings, and disabled several unreferenced functions (dead code) - hopefully, compilation hasn't been broken...
svn-id: r38243
Diffstat (limited to 'engines/sci/include')
-rw-r--r-- | engines/sci/include/gfx_system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/include/gfx_system.h b/engines/sci/include/gfx_system.h index 4943a2aff1..45341b6237 100644 --- a/engines/sci/include/gfx_system.h +++ b/engines/sci/include/gfx_system.h @@ -132,7 +132,7 @@ typedef struct { /* gfx_pixmap_color_t: Pixmap-specific color entries */ typedef struct { /* gfx_color_t: Full color */ gfx_pixmap_color_t visual; guint8 alpha; /* transparency = (1-opacity) */ - byte priority, control; + signed char priority, control; byte mask; /* see mask values below */ } gfx_color_t; |