author | zecke <zecke> | 2004-04-07 18:01:16 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-04-07 18:01:16 (UTC) |
commit | 7c4c7920dd7c38db7a0bd49529ce0cd20a54a78a (patch) (side-by-side diff) | |
tree | 20598f8c9085180a4a41e011fb5707a71142ec91 /library | |
parent | 51218a62632aa83a84d4ef23a0044c7f8cf5aa9c (diff) | |
download | opie-7c4c7920dd7c38db7a0bd49529ce0cd20a54a78a.zip opie-7c4c7920dd7c38db7a0bd49529ce0cd20a54a78a.tar.gz opie-7c4c7920dd7c38db7a0bd49529ce0cd20a54a78a.tar.bz2 |
Using the right mixer helps.. lets see if h5xxx breaks again
-rw-r--r-- | library/qpeapplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 3370264..755fb19 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -352,17 +352,17 @@ static void setVolume( int t = 0, int percent = -1 ) if ( percent < 0 ) percent = cfg.readNumEntry( "VolumePercent", 50 ); #ifndef QT_NO_SOUND int fd = 0; if ( ( fd = open( "/dev/mixer", O_RDWR ) ) >= 0 ) { int vol = muted ? 0 : percent; // set both channels to same volume vol |= vol << 8; - ioctl( fd, MIXER_WRITE( SOUND_MIXER_PCM ), &vol ); + ioctl( fd, MIXER_WRITE( SOUND_MIXER_VOLUME ), &vol ); ::close( fd ); } #endif } break; } } |