mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 13:28:02 +03:00
Fix a bug on sound test music selection
This commit is contained in:
parent
9f1f101a95
commit
ce494f7871
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ screen_levelselect_update(void *d)
|
|||
} else if(data->menu_choice == CHOICE_SOUNDTEST) {
|
||||
if(data->soundtest_selection > 0) {
|
||||
sound_bgm_play(data->soundtest_selection - 1);
|
||||
data->music_selected = data->soundtest_selection;
|
||||
data->music_selected = data->soundtest_selection - 1;
|
||||
}
|
||||
} else {
|
||||
screen_level_setlevel(data->menu_choice);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue