zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit d890d602cf7e651a289b68972607d8eb90367e36
parent 0513398cbad768793f165c45a2d80133846c3922
Author: Mark McCurry <[email protected]>
Date:   Sat,  6 Jun 2009 09:16:55 -0400

Changed fileexists(char*)->fileexists(const char*)

-bool fileexists(char *filename);
+bool fileexists(const char *filename);

Diffstat:
Msrc/Misc/Util.C | 2+-
Msrc/Misc/Util.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Misc/Util.C b/src/Misc/Util.C @@ -89,7 +89,7 @@ REALTYPE getdetune(unsigned char type,unsigned short int coarsedetune,unsigned s }; -bool fileexists(char *filename){ +bool fileexists(const char *filename){ struct stat tmp; int result=stat(filename,&tmp); if (result>=0) return(true); diff --git a/src/Misc/Util.h b/src/Misc/Util.h @@ -32,7 +32,7 @@ //Velocity Sensing function extern REALTYPE VelF(REALTYPE velocity,unsigned char scaling); -bool fileexists(char *filename); +bool fileexists(const char *filename); #define N_DETUNE_TYPES 4 //the number of detune types extern REALTYPE getdetune(unsigned char type,unsigned short int coarsedetune,unsigned short int finedetune);