forked from len0rd/rockbox
Use shorter fields in sound_settings_info struct to save some bytes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18241 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4bf4d2bb55
commit
22e0603d52
1 changed files with 5 additions and 5 deletions
|
@ -133,11 +133,11 @@ enum Channel {
|
|||
|
||||
struct sound_settings_info {
|
||||
const char *unit;
|
||||
int numdecimals;
|
||||
int steps;
|
||||
int minval;
|
||||
int maxval;
|
||||
int defaultval;
|
||||
char numdecimals;
|
||||
char steps;
|
||||
short minval;
|
||||
short maxval;
|
||||
short defaultval;
|
||||
};
|
||||
|
||||
/* This struct is used by every driver to export its min/max/default values for
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue