diff options
| author | Jonathan Gray | 2002-12-12 03:22:30 +0000 | 
|---|---|---|
| committer | Jonathan Gray | 2002-12-12 03:22:30 +0000 | 
| commit | 6c20dc48c7b974ad119a37adfd1f992102ac6027 (patch) | |
| tree | a639da08ef1aa77500fe4ef7cc5c03f2f1f9693c | |
| parent | 1b10fcbdbb98b8b44c29c843d4700eab38078501 (diff) | |
| download | scummvm-rg350-6c20dc48c7b974ad119a37adfd1f992102ac6027.tar.gz scummvm-rg350-6c20dc48c7b974ad119a37adfd1f992102ac6027.tar.bz2 scummvm-rg350-6c20dc48c7b974ad119a37adfd1f992102ac6027.zip | |
fix up alsa after recent midi changes
svn-id: r5911
| -rw-r--r-- | backends/midi/alsa.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/backends/midi/alsa.cpp b/backends/midi/alsa.cpp index c150dc11a8..39816a6b7b 100644 --- a/backends/midi/alsa.cpp +++ b/backends/midi/alsa.cpp @@ -130,7 +130,7 @@ int MidiDriver_ALSA::open()  void MidiDriver_ALSA::close()  { -	_mode = 0; +	_isOpen = false;  	if (seq_handle)  		snd_seq_close(seq_handle);  } | 
