Fix incorrect alignment macro

This commit is contained in:
Dietrich Epp 2022-11-16 18:30:59 -05:00
parent d5bfaa510a
commit 01a3863697
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ static void ProjectClose(WindowRef window, ProjectHandle project)
#define kChunkCount 2
#define ALIGN(x) (((x) + 15) + ~(UInt32)15)
#define ALIGN(x) (((x) + 15) & ~(UInt32)15)
static OSErr ProjectWriteHeader(short refNum, int nchunks,
struct ProjectChunk *ckInfo)