diff --git a/assets/audios/question.mp3 b/assets/audios/question.mp3 index 215cd42..156e017 100644 Binary files a/assets/audios/question.mp3 and b/assets/audios/question.mp3 differ diff --git a/lib/features/question/presentation/bloc/question_bloc.dart b/lib/features/question/presentation/bloc/question_bloc.dart index 9b37113..db297ec 100644 --- a/lib/features/question/presentation/bloc/question_bloc.dart +++ b/lib/features/question/presentation/bloc/question_bloc.dart @@ -154,7 +154,7 @@ class QuestionBloc extends Bloc { if (!_mainAudioService.isMuted) { await Future.wait([ _mainAudioService.setVolume(volume: MyConstants.questionAudioVolume), - _backgroundAudioService.setVolume(volume: 0.1), + _backgroundAudioService.setVolume(volume: 0.2), ]); } await _backgroundAudioService.play(); @@ -181,7 +181,7 @@ class QuestionBloc extends Bloc { Future changeMute() async { await Future.wait([ _mainAudioService.changeMute(newVolume: MyConstants.questionAudioVolume), - _backgroundAudioService.changeMute(newVolume: 0.1), + _backgroundAudioService.changeMute(newVolume: 0.2), _effectAudioService.changeMute(), ]); }