Removed this from old 1.6.0 - tried to see if it effected audio

issues
This commit is contained in:
Twinaphex 2012-07-10 05:45:41 +02:00
parent 04998786ca
commit 64f496e81f

View File

@ -84,11 +84,6 @@ void blip_add( blip_buffer_t* s, int clocks, int delta )
int blip_clocks_needed( const blip_buffer_t* s, int samples )
{
#ifdef __LIBRETRO__
/* int fixed_needed */
if (samples > s->size)
samples = s->size;
#endif
/* Fixed-point number of samples needed in addition to those in buffer */
int fixed_needed = samples * time_unit - s->offset;