diff options
author | callum_linden <none@none> | 2013-01-29 18:09:13 -0500 |
---|---|---|
committer | callum_linden <none@none> | 2013-01-29 18:09:13 -0500 |
commit | 276800e6f2d4521f6b3a987cf1a4ace95282092d (patch) | |
tree | a02400e4c5ce90848a6dc55ac5ef2d32d986d285 /indra/media_plugins | |
parent | bfbf4a6c46be52e64147e0be4a4bdc4a81392cd7 (diff) |
MAINT-2281: correct test for XP
Diffstat (limited to 'indra/media_plugins')
-rw-r--r-- | indra/media_plugins/webkit/windows_volume_catcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/media_plugins/webkit/windows_volume_catcher.cpp b/indra/media_plugins/webkit/windows_volume_catcher.cpp index 957704da47..cc4630c1b8 100644 --- a/indra/media_plugins/webkit/windows_volume_catcher.cpp +++ b/indra/media_plugins/webkit/windows_volume_catcher.cpp @@ -90,7 +90,7 @@ void VolumeCatcherImpl::setVolume(F32 volume) { mVolume = volume; - if ( mSystemIsVistaOrHigher ) + if ( ! mSystemIsVistaOrHigher ) { // set both left/right to same volume // TODO: use pan value to set independently |