|
Bugzilla – Full Text Bug Listing |
| Summary: | MIDI support broken in scummvm? | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE Linux 10.1 | Reporter: | Stefan Dirsch <sndirsch> |
| Component: | Other | Assignee: | Stefan Dirsch <sndirsch> |
| Status: | RESOLVED FIXED | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P2 - High | CC: | tiwai |
| Version: | Beta 3 | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | Other | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Stefan Dirsch
2006-02-06 14:51:19 UTC
But it seems to work with timidity ... # timidity -iAqqq -Os1S -N0 & # aconnect -ol | grep '^client.*TiMidity' | \ sed -e s'/^client \([0-9]\+\):.*/\1/' 128 # SCUMMVM_PORT=128:0 scummvm -e alsa queen Looking for queen Trying to start game 'Flight of the Amazon Queen' Connected to Alsa sequencer client [128:0] ALSA client initialised [129:0] [...] # SCUMMVM_PORT=128:0 scummvm -e alsa sky Looking for sky Trying to start game 'Beneath a Steel Sky' Found BASS version v0.0348 (1445 dnr entries) Connected to Alsa sequencer client [128:0] ALSA client initialised [129:0] [...] This is on machine 'shannon'. Although I installed the soundfonts now, it still does not work. :-( # cat /proc/asound/card0/wavetableD1 Device: Emu10k1 Ports: 4 Addresses: 17:0 17:1 17:2 17:3 Use Counter: 0 Max Voices: 64 Allocated Voices: 0 Memory Size: 134217728 Memory Available: 126291620 Allocated Blocks: 639 SoundFonts: 3 Instruments: 2342 Samples: 638 Locked Instruments: 2342 Locked Samples: 638 Fix:
- export SCUMMVM_PORT=65:0
+ client=`aconnect -ol | grep '^client.*WaveTable' | \
+ sed -e s'/^client \([0-9]\+\):.*/\1/'`
+ if [ -n "$client" ]; then
+ export SCUMMVM_PORT=${client}:0
+ fi
FOTAQ and BASS start scripts fixed for Beta4. |