aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMax Horn2006-07-09 13:01:15 +0000
committerMax Horn2006-07-09 13:01:15 +0000
commitf35f4a4d1c41a8d186621b912b985dd5d796632a (patch)
tree1468779935932e47d32e838458df8d2cf3a5bbe8 /sound
parent880838514f28fd298e6418f2096d61b3f757e237 (diff)
downloadscummvm-rg350-f35f4a4d1c41a8d186621b912b985dd5d796632a.tar.gz
scummvm-rg350-f35f4a4d1c41a8d186621b912b985dd5d796632a.tar.bz2
scummvm-rg350-f35f4a4d1c41a8d186621b912b985dd5d796632a.zip
Use START_PACK_STRUCTS / END_PACK_STRUCTS when available, instead of checking for GCC / not GCC
svn-id: r23458
Diffstat (limited to 'sound')
-rw-r--r--sound/voc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/voc.h b/sound/voc.h
index d53fcedcdf..c44f9f4f1a 100644
--- a/sound/voc.h
+++ b/sound/voc.h
@@ -34,7 +34,7 @@ namespace Audio {
class AudioStream;
-#if !defined(__GNUC__)
+#if defined(START_PACK_STRUCTS)
#pragma START_PACK_STRUCTS
#endif
@@ -52,7 +52,7 @@ struct VocBlockHeader {
uint8 pack;
} GCC_PACK;
-#if !defined(__GNUC__)
+#if defined(END_PACK_STRUCTS)
#pragma END_PACK_STRUCTS
#endif