diff options
| author | Utkarsh Gupta <utkarsh.eminem@gmail.com> | 2014-04-23 17:39:18 +0530 |
|---|---|---|
| committer | Utkarsh Gupta <utkarsh.eminem@gmail.com> | 2014-04-23 17:39:18 +0530 |
| commit | a381de1f7035de6fb80ec3adc09c489a2a03325d (patch) | |
| tree | 786c0772e4b4e285a83837c7044279107c2663da | |
| parent | 32d6ec2315f55885761cc70c5acb62f983b24275 (diff) | |
DSPManager: Boeffla sound 1.6.6
Change-Id: Id8c51fe643ece1ad77ecb01de31041fc0a860aa1
3 files changed, 9 insertions, 9 deletions
diff --git a/res/xml/boefflasoundcontrol_preferences.xml b/res/xml/boefflasoundcontrol_preferences.xml index f7f00ec..8190447 100644 --- a/res/xml/boefflasoundcontrol_preferences.xml +++ b/res/xml/boefflasoundcontrol_preferences.xml @@ -84,7 +84,7 @@ android:persistent="true" android:dependency="boeffla_sound" android:max="63" - dsp:min="20" + dsp:min="0" dsp:unitsLeft="" dsp:unitsRight="" android:defaultValue="17" /> @@ -105,7 +105,7 @@ android:persistent="true" android:dependency="boeffla_sound" android:max="63" - dsp:min="20" + dsp:min="0" dsp:unitsLeft="" dsp:unitsRight="" android:defaultValue="10" /> @@ -116,7 +116,7 @@ android:persistent="true" android:dependency="boeffla_sound" android:max="63" - dsp:min="20" + dsp:min="0" dsp:unitsLeft="" dsp:unitsRight="" android:defaultValue="10" /> diff --git a/src/com/bel/android/dspmanager/modules/boefflasoundcontrol/BoefflaSoundControl.java b/src/com/bel/android/dspmanager/modules/boefflasoundcontrol/BoefflaSoundControl.java index 9ed7ec9..ba748b5 100644 --- a/src/com/bel/android/dspmanager/modules/boefflasoundcontrol/BoefflaSoundControl.java +++ b/src/com/bel/android/dspmanager/modules/boefflasoundcontrol/BoefflaSoundControl.java @@ -253,11 +253,11 @@ public class BoefflaSoundControl extends PreferenceFragment bHelper().applyFLLTuning(false); mFLLTuning.setChecked(false); - bHelper().applyHeadphoneVolumeLeft(50); - mHeadphoneVolumeLeft.setValue(50); + bHelper().applyHeadphoneVolumeLeft(57); + mHeadphoneVolumeLeft.setValue(57); - bHelper().applyHeadphoneVolumeRight(50); - mHeadphoneVolumeRight.setValue(50); + bHelper().applyHeadphoneVolumeRight(57); + mHeadphoneVolumeRight.setValue(57); bHelper().applyMicrophoneCall(25); mMicrophoneCall.setValue(25); diff --git a/src/com/bel/android/dspmanager/modules/boefflasoundcontrol/BoefflaSoundControlHelper.java b/src/com/bel/android/dspmanager/modules/boefflasoundcontrol/BoefflaSoundControlHelper.java index e0f75cc..38400cc 100644 --- a/src/com/bel/android/dspmanager/modules/boefflasoundcontrol/BoefflaSoundControlHelper.java +++ b/src/com/bel/android/dspmanager/modules/boefflasoundcontrol/BoefflaSoundControlHelper.java @@ -107,12 +107,12 @@ public class BoefflaSoundControlHelper { } if (getHeadphoneVolumeLeft()) { - int i = mSharedPrefs.getInt("headphone_volume_left", 50); + int i = mSharedPrefs.getInt("headphone_volume_left", 57); applyHeadphoneVolumeLeft(i); } if (getHeadphoneVolumeRight()) { - int i = mSharedPrefs.getInt("headphone_volume_right", 50); + int i = mSharedPrefs.getInt("headphone_volume_right", 57); applyHeadphoneVolumeRight(i); } |
