summaryrefslogtreecommitdiff
path: root/library/qpeapplication.cpp
authorzecke <zecke>2004-03-06 12:47:33 (UTC)
committer zecke <zecke>2004-03-06 12:47:33 (UTC)
commite605df00284707a6dc4dd2ba51962531d43a5bea (patch) (side-by-side diff)
treee18e8234e406ccf528672cad35a8fa349cabbf97 /library/qpeapplication.cpp
parenta66fd5afde517e9a61e74fc17df617297f134c96 (diff)
downloadopie-e605df00284707a6dc4dd2ba51962531d43a5bea.zip
opie-e605df00284707a6dc4dd2ba51962531d43a5bea.tar.gz
opie-e605df00284707a6dc4dd2ba51962531d43a5bea.tar.bz2
-ioctl( fd, MIXER_WRITE( 0 ), &vol );
+ioctl( fd, MIXER_WRITE( SOUND_MIXER_PCM ), &vol ); don't hardcode the mixer
Diffstat (limited to 'library/qpeapplication.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index c339a78..5d05ed5 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -357,7 +357,7 @@ static void setVolume( int t = 0, int percent = -1 )
int vol = muted ? 0 : percent;
// set both channels to same volume
vol |= vol << 8;
- ioctl( fd, MIXER_WRITE( 0 ), &vol );
+ ioctl( fd, MIXER_WRITE( SOUND_MIXER_PCM ), &vol );
::close( fd );
}
#endif