diff src/modplug/modplugbmp.h @ 120:7ce296248b5c trunk

[svn] 669 is 2-byte, not 4-byte. Thanks to a report from Kevin Korb on #audacious.
author chainsaw
date Wed, 25 Oct 2006 13:41:36 -0700
parents 3da1b8942b8b
children 94b22cc75eb8
line wrap: on
line diff
--- a/src/modplug/modplugbmp.h	Wed Oct 25 00:28:43 2006 -0700
+++ b/src/modplug/modplugbmp.h	Wed Oct 25 13:41:36 2006 -0700
@@ -37,7 +37,7 @@
 /* These nicer formats have the magic bytes at the front of the file where they belong */
 #define UMX_MAGIC	(unsigned char [4]) { 0xC1, 0x83, 0x2A, 0x9E }
 #define XM_MAGIC	(unsigned char [4]) { 0x45, 0x78, 0x74, 0x65 }			/* Exte(nded Module) */
-#define M669_MAGIC	(unsigned char [4]) { 0x69, 0x66, 0x20, 0x20 }
+#define M669_MAGIC	(unsigned char [4]) { 0x69, 0x66, 0x20, 0x20 }			/* Last two bytes are bogus, and not checked */
 #define IT_MAGIC	(unsigned char [4]) { 0x49, 0x4D, 0x50, 0x4D }			/* IMPM */
 #define MTM_MAGIC	(unsigned char [4]) { 0x4D, 0x54, 0x4D, 0x10 }
 #define PSM_MAGIC	(unsigned char [4]) { 0x50, 0x53, 0x4D, 0x20 }