aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Persson2005-07-10 15:23:36 +0000
committerLars Persson2005-07-10 15:23:36 +0000
commit4ea61fb13e0c7cf8d7ed7db87b912eae402fb3ac (patch)
tree39a16f1ff87f2f999c90269cc6bb1ff0fe6e17d0
parent40ecfe03ec36da39efaa04080691269e625525ac (diff)
downloadscummvm-rg350-4ea61fb13e0c7cf8d7ed7db87b912eae402fb3ac.tar.gz
scummvm-rg350-4ea61fb13e0c7cf8d7ed7db87b912eae402fb3ac.tar.bz2
scummvm-rg350-4ea61fb13e0c7cf8d7ed7db87b912eae402fb3ac.zip
Remove packing on Color, as it was n't needed. Keeping packing on PalEntry
svn-id: r18531
-rw-r--r--saga/gfx.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/saga/gfx.h b/saga/gfx.h
index af0493195c..13202781e3 100644
--- a/saga/gfx.h
+++ b/saga/gfx.h
@@ -79,13 +79,14 @@ struct PalEntry {
byte blue;
} GCC_PACK;
+#pragma END_PACK_STRUCTS
+
struct Color {
int red;
int green;
int blue;
int alpha;
-} GCC_PACK;
-#pragma END_PACK_STRUCTS
+};
struct Surface : Graphics::Surface {