From ef9c08894c0e1f7fbb88301eabe53ebba0f95d47 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Thu, 15 May 2008 16:57:32 +0000 Subject: [PATCH] removed 16x oversampling git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@973 0778d3d1-df1d-0410-868b-ea421aaaa00d --- include/mixer.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/mixer.h b/include/mixer.h index ecc4717cd..3a2a9fd1d 100644 --- a/include/mixer.h +++ b/include/mixer.h @@ -115,8 +115,7 @@ public: Oversampling_None, Oversampling_2x, Oversampling_4x, - Oversampling_8x, - Oversampling_16x + Oversampling_8x } ; Interpolation interpolation; @@ -167,7 +166,6 @@ public: case Oversampling_2x: return 2; case Oversampling_4x: return 4; case Oversampling_8x: return 8; - case Oversampling_16x: return 16; } return( 1 ); }