Don't use float <_<

This commit is contained in:
Themaister 2011-12-14 00:30:03 +01:00
parent 8bbde14019
commit 0416a2ae61
1 changed files with 0 additions and 7 deletions

View File

@ -100,12 +100,6 @@ static bool xenon360_start(void *data)
return true; return true;
} }
static bool xenon360_use_float(void *data)
{
(void)data;
return true;
}
static void xenon360_free(void *data) static void xenon360_free(void *data)
{ {
if (data) if (data)
@ -118,7 +112,6 @@ const audio_driver_t audio_xenon360 = {
.stop = xenon360_stop, .stop = xenon360_stop,
.start = xenon360_start, .start = xenon360_start,
.set_nonblock_state = xenon360_set_nonblock_state, .set_nonblock_state = xenon360_set_nonblock_state,
.use_float = xenon360_use_float,
.free = xenon360_free, .free = xenon360_free,
.ident = "xenon360" .ident = "xenon360"
}; };