3 |
|
* |
4 |
|
* Adapted from Frodo's Solaris sound routines by Marc Chabanas |
5 |
|
* |
6 |
< |
* Basilisk II (C) 1997-2001 Christian Bauer |
6 |
> |
* Basilisk II (C) 1997-2002 Christian Bauer |
7 |
|
* |
8 |
|
* This program is free software; you can redistribute it and/or modify |
9 |
|
* it under the terms of the GNU General Public License as published by |
268 |
|
* It is guaranteed that AudioStatus.num_sources == 0 |
269 |
|
*/ |
270 |
|
|
271 |
< |
void audio_set_sample_rate(int index) |
271 |
> |
bool audio_set_sample_rate(int index) |
272 |
|
{ |
273 |
+ |
return true; |
274 |
|
} |
275 |
|
|
276 |
< |
void audio_set_sample_size(int index) |
276 |
> |
bool audio_set_sample_size(int index) |
277 |
|
{ |
278 |
+ |
return true; |
279 |
|
} |
280 |
|
|
281 |
< |
void audio_set_channels(int index) |
281 |
> |
bool audio_set_channels(int index) |
282 |
|
{ |
283 |
+ |
return true; |
284 |
|
} |
285 |
|
|
286 |
|
|