diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/lib/formats/apridisk.c | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/lib/formats/apridisk.c')
-rw-r--r-- | src/lib/formats/apridisk.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/formats/apridisk.c b/src/lib/formats/apridisk.c index 1998a72acfc..e331607405d 100644 --- a/src/lib/formats/apridisk.c +++ b/src/lib/formats/apridisk.c @@ -11,17 +11,17 @@ CONSTANTS ***************************************************************************/ -#define APR_HEADER_SIZE 128 +#define APR_HEADER_SIZE 128 /* sector types */ -#define APR_DELETED 0xe31d0000 -#define APR_MAGIC 0xe31d0001 -#define APR_COMMENT 0xe31d0002 -#define APR_CREATOR 0xe31d0003 +#define APR_DELETED 0xe31d0000 +#define APR_MAGIC 0xe31d0001 +#define APR_COMMENT 0xe31d0002 +#define APR_CREATOR 0xe31d0003 /* compression type */ -#define APR_UNCOMPRESSED 0x9e90 -#define APR_COMPRESSED 0x3e5a +#define APR_UNCOMPRESSED 0x9e90 +#define APR_COMPRESSED 0x3e5a static const char *apr_magic = "ACT Apricot disk image\x1a\x04"; |