1
0
Fork 0
forked from len0rd/rockbox

Add sound_current to plugin api

Adds:
	sound_current(int setting)
		returns the current sound setting from global_settings
		complements sound_max, sound_min and sound_default

Change-Id: I35bd893753c958f808492906fe533edc51d5d57c
This commit is contained in:
William Wilgus 2019-07-25 00:48:40 -05:00
parent 7e4902bf6b
commit 5f9d1f59d3
3 changed files with 90 additions and 7 deletions

View file

@ -31,6 +31,7 @@ int sound_numdecimals(int setting);
int sound_steps(int setting);
int sound_min(int setting);
int sound_max(int setting);
int sound_current(int setting);
int sound_default(int setting);
sound_set_type* sound_get_fn(int setting);