SUPERNOVA: Removes stopAudio()

This commit is contained in:
Joseph-Eugene Winzer 2018-03-21 12:28:21 +01:00
parent 32877639d7
commit 07f5f34d42
2 changed files with 0 additions and 5 deletions

View File

@ -318,10 +318,6 @@ void SupernovaEngine::playSound(AudioIndex sample) {
_sound->play(sample);
}
void SupernovaEngine::stopAudio() {
_sound->stop();
}
void SupernovaEngine::playSound(MusicIndex index) {
_sound->play(index);
}

View File

@ -137,7 +137,6 @@ public:
void paletteBrightness();
void playSound(AudioIndex sample);
void playSound(MusicIndex index);
void stopAudio();
void renderImageSection(int section);
void renderImage(int section);
bool setCurrentImage(int filenumber);