Flipped what the volume up and down buttons do, since I accidentally had them reversed

This commit is contained in:
Dyllan Kobal 2022-09-10 14:46:23 -04:00
parent e40974bc00
commit 3504a07f9c

View file

@ -248,9 +248,9 @@ void Music::OnObjectEvent(lv_obj_t* obj, lv_event_t event) {
} else if (obj == btnRewind) {
musicService.event(Controllers::MusicService::EVENT_MUSIC_REWIND);
} else if (obj == btnVolDown) {
musicService.event(Controllers::MusicService::EVENT_MUSIC_VOLUP);
} else if (obj == btnVolUp) {
musicService.event(Controllers::MusicService::EVENT_MUSIC_VOLDOWN);
} else if (obj == btnVolUp) {
musicService.event(Controllers::MusicService::EVENT_MUSIC_VOLUP);
} else if (obj == btnPrev) {
musicService.event(Controllers::MusicService::EVENT_MUSIC_PREV);
} else if (obj == btnPlayPause) {