summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-09-18 13:28:07 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-09-18 13:28:07 +0000
commit71548bc972647e7d32e5d1b127bb34377e19d1be (patch)
tree7fe36195f885b383b4f59bb3adaf74132b354290
parentc6f44d118e5f3303763a6ff71e64929f0980b880 (diff)
downloaddrakx-backup-do-not-use-71548bc972647e7d32e5d1b127bb34377e19d1be.tar
drakx-backup-do-not-use-71548bc972647e7d32e5d1b127bb34377e19d1be.tar.gz
drakx-backup-do-not-use-71548bc972647e7d32e5d1b127bb34377e19d1be.tar.bz2
drakx-backup-do-not-use-71548bc972647e7d32e5d1b127bb34377e19d1be.tar.xz
drakx-backup-do-not-use-71548bc972647e7d32e5d1b127bb34377e19d1be.zip
fix slot number when configuring sound cards
-rw-r--r--perl-install/install_steps_interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 7ba215815..b30508ad1 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -950,6 +950,7 @@ sub summary {
my $sound_index = 0;
foreach my $device (@sound_cards) {
+ $device->{sound_slot_index} = $sound_index;
push @l, {
group => N("Hardware"),
label => N("Sound card"),
@@ -958,7 +959,6 @@ sub summary {
},
clicked => sub {
require harddrake::sound;
- $device->{sound_slot_index} = $sound_index;
harddrake::sound::config($o, $device);
},
};