diff --git a/wiki/ApiDocumentation.wiki b/wiki/ApiDocumentation.wiki index 8e962fb..830cea9 100644 --- a/wiki/ApiDocumentation.wiki +++ b/wiki/ApiDocumentation.wiki @@ -506,10 +506,10 @@ By default pixel rows of unaligned pixel formats are aligned to the next byte bo void CompressionOptions:: setPitchAlignment(int pitchAlignment); }}} -Where `pitchAlignment` must be a positive number and a power of two, and is given in bits. Note, that previous versions of NVTT incorrectly aligned the pitch to 32 bits by default, so obtain the same behavior you now have to explicitly set the alignment as follows: +Where `pitchAlignment` must be a positive number and a power of two, and is given in bytes. By default the pitch alignment is set to 1. Note, that previous versions of NVTT incorrectly aligned the pitch to 4 bytes by default. So, to obtain the same behavior you now have to explicitly set the alignment as follows: {{{ -compressionOptions.setPitchAlignment(32); +compressionOptions.setPitchAlignment(4); }}}