[PD-cvs] externals/grill/xsample/source groove.cpp, 1.34, 1.35 main.h, 1.39, 1.40

Thomas Grill xovo at users.sourceforge.net
Sun Oct 23 01:55:23 CEST 2005


Update of /cvsroot/pure-data/externals/grill/xsample/source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15474/source

Modified Files:
	groove.cpp main.h 
Log Message:
fix compilation for CFM
small fixes
release version
small change proposed by Tim Blechmann


Index: groove.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/xsample/source/groove.cpp,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** groove.cpp	26 Sep 2005 14:00:26 -0000	1.34
--- groove.cpp	22 Oct 2005 23:55:21 -0000	1.35
***************
*** 95,101 ****
  	inline void setposmod(double pos)
  	{
! 		double p = pos-znsmin;
! 		if(p >= 0) curpos = znsmin+fmod(p,znsmax-znsmin);
! 		else curpos = znsmax+fmod(p,znsmax-znsmin);
  	}
  
--- 95,102 ----
  	inline void setposmod(double pos)
  	{
!         if(pos >= 0) 
!             curpos = znsmin+fmod(pos,znsmax-znsmin);
!         else 
!             curpos = znsmax+fmod(pos,znsmax-znsmin);
  	}
  

Index: main.h
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/xsample/source/main.h,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** main.h	11 Oct 2005 10:09:47 -0000	1.39
--- main.h	22 Oct 2005 23:55:21 -0000	1.40
***************
*** 16,20 ****
  #endif
  
! #define XSAMPLE_VERSION "0.3.1pre8"
  
  extern "C++" {
--- 16,20 ----
  #endif
  
! #define XSAMPLE_VERSION "0.3.1"
  
  extern "C++" {





More information about the Pd-cvs mailing list