1
0
Fork 0
forked from len0rd/rockbox

[Feature] Persist pitch settings through reboots part deux

Revisit this after discussion with chris_s on IRC and forum

Pitch menu now changes icon when pitch has been changed

uses NVRAM to save the pitch settings unconditionally

Manual updated

Change-Id: Idcb4c2b7fe42f7a203dc4bfc46285657f370d0fd
This commit is contained in:
William Wilgus 2025-01-18 23:50:33 -05:00 committed by William Wilgus
parent 3e57ca15a5
commit 4e271642df
12 changed files with 62 additions and 103 deletions

View file

@ -636,6 +636,8 @@ void sound_set_pitch(int32_t pitch)
return;
audiohw_set_pitch(pitch);
/* filter out invalid by grabbing the value actually set */
global_status.resume_pitch = dsp_get_pitch();
}
int32_t sound_get_pitch(void)