Change default dither to 'none'

This commit is contained in:
Stian Lund 2023-08-20 12:30:19 +02:00
parent 2e2c5c6b08
commit 9a29fa62d9

View File

@ -69,7 +69,7 @@ ECHO The default is 15.
ECHO -m Palettegen mode - one of 3 modes listed below.
ECHO The default is 1 (diff).
ECHO -d Dithering algorithm to be used.
ECHO The default is 1 (Bayer).
ECHO The default is 0 (None).
ECHO -b Bayer Scale setting. (Optional)
ECHO This can only be used when Bayer dithering is applied.
ECHO See more information below.
@ -94,7 +94,7 @@ ECHO 2: single - one palette per frame
ECHO 3: full - one palette for the whole animation
ECHO:
ECHO Dithering Options:
ECHO 0: No Dithering
ECHO 0: None
ECHO 1: Bayer
ECHO 2: Heckbert
ECHO 3: Floyd Steinberg
@ -154,7 +154,7 @@ IF NOT DEFINED filetype SET "filetype=gif"
IF NOT DEFINED scale SET "scale=-1"
IF NOT DEFINED fps SET fps=15
IF NOT DEFINED mode SET mode=1
IF NOT DEFINED dither SET dither=1
IF NOT DEFINED dither SET dither=0
GOTO :safchek
:: Noob proofing the script to prevent it from breaking should critical settings not be defined