aboutsummaryrefslogtreecommitdiff
path: root/include/aomusicplayer.h
diff options
context:
space:
mode:
authorCrystalwarrior <varsash@gmail.com>2019-10-05 20:32:41 +0300
committerCrystalwarrior <varsash@gmail.com>2019-10-05 20:32:41 +0300
commit2956a183b4203d9362d62d05ed251c6f934ef090 (patch)
tree3909d31aca9d532912dd8cdedee5349a20cd6450 /include/aomusicplayer.h
parentbc8158cc96dd36a18ba18b0271331463cd81c497 (diff)
parent9f543f9ef7109340142134124e8bda6c9f750a18 (diff)
Merge branch 'bass-hell'
Diffstat (limited to 'include/aomusicplayer.h')
-rw-r--r--include/aomusicplayer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/aomusicplayer.h b/include/aomusicplayer.h
index 15014af..52c97c3 100644
--- a/include/aomusicplayer.h
+++ b/include/aomusicplayer.h
@@ -25,11 +25,11 @@ public:
const int m_channelmax = 4;
//These have to be public for the stupid sync thing
-// QWORD loop_start = 0;
-// QWORD loop_end = 0;
+ QWORD loop_start = 0;
+ QWORD loop_end = 0;
public slots:
- void play(QString p_song, int channel=0, bool crossfade=false);
+ void play(QString p_song, int channel=0, bool loop=false, int effect_flags=0);
void stop(int channel=0);
private:
@@ -44,6 +44,7 @@ private:
// Channel 2 = extra
// Channel 3 = extra
HSTREAM m_stream_list[4];
+ HSYNC loop_sync[4];
};
#elif defined(QTAUDIO)
class AOMusicPlayer