Skip to content

Commit

Permalink
spaces -> tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
sagamusix committed Dec 16, 2024
1 parent 8ec1ef4 commit 4ff1a01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions player/effects.c
Original file line number Diff line number Diff line change
Expand Up @@ -2326,10 +2326,10 @@ void csf_process_effects(song_t *csf, int firsttick)
if (firsttick) {
const int effect_column_tone_porta = (cmd == FX_TONEPORTAMENTO || cmd == FX_TONEPORTAVOL);
if (effect_column_tone_porta) {
uint32_t toneporta_param = (cmd != FX_TONEPORTAVOL ? param : 0);
if (toneporta_param)
uint32_t toneporta_param = (cmd != FX_TONEPORTAVOL ? param : 0);
if (toneporta_param)
chan->mem_portanote = toneporta_param;
else if(!toneporta_param && !(csf->flags & SONG_COMPATGXX))
else if(!toneporta_param && !(csf->flags & SONG_COMPATGXX))
chan->mem_portanote = chan->mem_pitchslide;
if (!(csf->flags & SONG_COMPATGXX))
chan->mem_pitchslide = chan->mem_portanote;
Expand Down

0 comments on commit 4ff1a01

Please sign in to comment.