From 64f496e81f6b949df7f6d5d26fbd53c1bd834a9e Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Tue, 10 Jul 2012 05:45:41 +0200 Subject: [PATCH] Removed this from old 1.6.0 - tried to see if it effected audio issues --- source/sound/blip.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/sound/blip.c b/source/sound/blip.c index bf896e2..d351c11 100644 --- a/source/sound/blip.c +++ b/source/sound/blip.c @@ -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;