mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-01-31 21:50:37 +00:00
Remove unused fluid_tuning_set_key and fluid_is_empty
This commit is contained in:
parent
036cb1d347
commit
c605380aa8
3 changed files with 0 additions and 18 deletions
|
@ -2182,18 +2182,6 @@ fluid_is_number(char* a)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
int
|
||||
fluid_is_empty(char* a)
|
||||
{
|
||||
while (*a != 0) {
|
||||
if ((*a != ' ') && (*a != '\t') && (*a != '\n') && (*a != '\r')) {
|
||||
return FALSE;
|
||||
}
|
||||
a++;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
char*
|
||||
fluid_expand_path(char* path, char* new_path, int len)
|
||||
{
|
||||
|
|
|
@ -29,7 +29,6 @@ void fluid_shell_settings(fluid_settings_t* settings);
|
|||
|
||||
/** some help functions */
|
||||
int fluid_is_number(char* a);
|
||||
int fluid_is_empty(char* a);
|
||||
char* fluid_expand_path(char* path, char* new_path, int len);
|
||||
|
||||
/** the handlers for the command lines */
|
||||
|
|
|
@ -145,11 +145,6 @@ char* fluid_tuning_get_name(fluid_tuning_t* tuning)
|
|||
return tuning->name;
|
||||
}
|
||||
|
||||
void fluid_tuning_set_key(fluid_tuning_t* tuning, int key, double pitch)
|
||||
{
|
||||
tuning->pitch[key] = pitch;
|
||||
}
|
||||
|
||||
void fluid_tuning_set_octave(fluid_tuning_t* tuning, const double* pitch_deriv)
|
||||
{
|
||||
int i;
|
||||
|
|
Loading…
Reference in a new issue