forgot those on noaudio

This commit is contained in:
sD 2020-05-23 17:28:54 +02:00
parent 5922bf748a
commit 68bd38b7fe
2 changed files with 12 additions and 0 deletions

View File

@ -208,5 +208,11 @@ AOMusicPlayer::~AOMusicPlayer() {}
void AOMusicPlayer::play(QString p_song, int channel, bool loop,
int effect_flags) {}
void AOMusicPlayer::stop(int channel) {}
void AOMusicPlayer::set_volume(int p_value, int channel) {}
void loopProc(int handle, int channel, int data, int *user) {}
void AOMusicPlayer::set_looping(bool toggle, int channel) {}
#endif

View File

@ -170,6 +170,10 @@ AOSfxPlayer::AOSfxPlayer(QWidget *parent, AOApplication *p_ao_app)
ao_app = p_ao_app;
}
void AOSfxPlayer::clear() {}
void AOSfxPlayer::loop_clear() {}
void AOSfxPlayer::play(QString p_sfx, QString p_char, QString shout,
int channel) {}
@ -178,4 +182,6 @@ void AOSfxPlayer::stop(int channel) {}
void AOSfxPlayer::set_volume(qreal p_value) {}
void AOSfxPlayer::set_volume_internal(qreal p_value) {}
void AOSfxPlayer::set_looping(bool toggle, int channel) {}
#endif