diff --git a/doc/3-pattern/effects.md b/doc/3-pattern/effects.md index c7f3cd7fd..d9f16d86c 100644 --- a/doc/3-pattern/effects.md +++ b/doc/3-pattern/effects.md @@ -12,8 +12,8 @@ however, effects are continuous (unless specified), which means you only need to - `FAxy`: **Fast volume slide.** same as `0Axy` above but 4× faster. - `F3xx`: **Fine volume slide up.** same as `0Ax0` but 64× slower. - `F4xx`: **Fine volume slide down.** same as `0A0x` but 64× slower. -- `F8xx`: **Single tick volume slide up.** adds `x` to volume on first tick only. -- `F9xx`: **Single tick volume slide down.** subtracts `x` from volume on first tick only. +- `F8xx`: **Single tick volume up.** adds `x` to volume. +- `F9xx`: **Single tick volume down.** subtracts `x` from volume. - --- - `07xy`: **Tremolo.** changes volume to be "wavy" with a sine LFO. `x` is the speed. `y` is the depth. - tremolo is downward only. @@ -24,8 +24,8 @@ however, effects are continuous (unless specified), which means you only need to - `E5xx`: **Set pitch.** `00` is -1 semitone, `80` is base pitch, `FF` is nearly +1 semitone. - `01xx`: **Pitch slide up.** - `02xx`: **Pitch slide down.** -- `F1xx`: **Single tick pitch slide up.** -- `F2xx`: **Single tick pitch slide down.** +- `F1xx`: **Single tick pitch up.** +- `F2xx`: **Single tick pitch down.** - --- - `03xx`: **Portamento.** slides the currently playing note's pitch toward the new note. `x` is the slide speed. - a note _must_ be present with this effect for it to work. diff --git a/src/engine/engine.cpp b/src/engine/engine.cpp index 077c1a026..b2788b3fa 100644 --- a/src/engine/engine.cpp +++ b/src/engine/engine.cpp @@ -137,9 +137,9 @@ const char* DivEngine::getEffectDesc(unsigned char effect, int chan, bool notNul case 0xf0: return _("F0xx: Set tick rate (bpm)"); case 0xf1: - return _("F1xx: Single tick note slide up"); + return _("F1xx: Single tick pitch up"); case 0xf2: - return _("F2xx: Single tick note slide down"); + return _("F2xx: Single tick pitch down"); case 0xf3: return _("F3xx: Fine volume slide up"); case 0xf4: @@ -151,9 +151,9 @@ const char* DivEngine::getEffectDesc(unsigned char effect, int chan, bool notNul case 0xf7: return _("F7xx: Restart macro (see manual)"); case 0xf8: - return _("F8xx: Single tick volume slide up"); + return _("F8xx: Single tick volume up"); case 0xf9: - return _("F9xx: Single tick volume slide down"); + return _("F9xx: Single tick volume down"); case 0xfa: return _("FAxx: Fast volume slide (0y: down; x0: up)"); case 0xfc: