From beca6bea004967a3492a1f9f861ec5c347e29729 Mon Sep 17 00:00:00 2001 From: LTVA1 <87536432+LTVA1@users.noreply.github.com> Date: Tue, 20 Aug 2024 22:08:24 +0300 Subject: [PATCH] fix? --- src/engine/song.cpp | 2 +- src/engine/song.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/song.cpp b/src/engine/song.cpp index e0b14a443..e4a398c2c 100644 --- a/src/engine/song.cpp +++ b/src/engine/song.cpp @@ -102,7 +102,7 @@ bool DivSubSong::walk(int& loopOrder, int& loopRow, int& loopEnd, int chans, int return false; } -void DivSubSong::findLength(bool& hasFFxx, std::vector& orders_vec, int& length, int loopOrder, int loopRow, int loopEnd, int chans, int jumpTreatment, int ignoreJumpAtEnd, int firstPat) +void DivSubSong::findLength(bool& hasFFxx, std::vector& orders_vec, int& length, int& loopOrder, int& loopRow, int& loopEnd, int chans, int jumpTreatment, int ignoreJumpAtEnd, int firstPat) { length = 0; hasFFxx = false; diff --git a/src/engine/song.h b/src/engine/song.h index 43c17d6fc..e247ca0ca 100644 --- a/src/engine/song.h +++ b/src/engine/song.h @@ -188,7 +188,7 @@ struct DivSubSong { /** * find song length in rows (up to specified loop point). Also find length of every row */ - void findLength(bool& hasFFxx, std::vector& orders, int& length, int loopOrder, int loopRow, int loopEnd, int chans, int jumpTreatment, int ignoreJumpAtEnd, int firstPat=0); + void findLength(bool& hasFFxx, std::vector& orders, int& length, int& loopOrder, int& loopRow, int& loopEnd, int chans, int jumpTreatment, int ignoreJumpAtEnd, int firstPat=0); void clearData(); void optimizePatterns();