[PD-cvs] externals/grill/pool main.cpp,1.10,1.11

xovo at users.sourceforge.net xovo at users.sourceforge.net
Tue Dec 9 04:38:56 CET 2003


Update of /cvsroot/pure-data/externals/grill/pool
In directory sc8-pr-cvs1:/tmp/cvs-serv3510

Modified Files:
	main.cpp 
Log Message:
 ""

Index: main.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/main.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** main.cpp	6 Dec 2003 03:38:13 -0000	1.10
--- main.cpp	9 Dec 2003 03:38:54 -0000	1.11
***************
*** 1122,1127 ****
  #if FLEXT_SYS == FLEXT_SYS_PD
      // / and \ must not be mixed!
! 	C *sl = strchr(fn,'/');
! 	if(!sl) sl = strchr(fn,'\\');
      if(!sl || (sl != fn 
  #if FLEXT_OS == FLEXT_OS_WIN
--- 1122,1128 ----
  #if FLEXT_SYS == FLEXT_SYS_PD
      // / and \ must not be mixed!
!     // (char *) type casts for BorlandC++
! 	C *sl = strchr((C *)fn,'/');
! 	if(!sl) sl = strchr((C *)fn,'\\');
      if(!sl || (sl != fn 
  #if FLEXT_OS == FLEXT_OS_WIN






More information about the Pd-cvs mailing list