Added settings.ini
This commit is contained in:
@ -85,6 +85,7 @@ void Audio::start(){
|
||||
}
|
||||
|
||||
void Audio::toggleMute(){ muted=!muted; }
|
||||
void Audio::setMuted(bool m){ muted=m; }
|
||||
|
||||
void Audio::nextTrack(){
|
||||
if(tracks.empty()) { current = -1; return; }
|
||||
|
||||
@ -43,6 +43,8 @@ public:
|
||||
void shuffle(); // randomize order
|
||||
void start(); // begin playback
|
||||
void toggleMute();
|
||||
void setMuted(bool m);
|
||||
bool isMuted() const { return muted; }
|
||||
|
||||
// Menu music support
|
||||
void setMenuTrack(const std::string& path);
|
||||
|
||||
Reference in New Issue
Block a user