diff options
-rwxr-xr-x | sc4pd/makefile.pd-darwin | 4 | ||||
-rw-r--r-- | sc4pd/source/support.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc4pd/makefile.pd-darwin b/sc4pd/makefile.pd-darwin index 04a3779..9523425 100755 --- a/sc4pd/makefile.pd-darwin +++ b/sc4pd/makefile.pd-darwin @@ -15,7 +15,7 @@ include ${CONFIG} FLEXTLIB=$(FLEXTPATH)/libflext.a # compiler stuff -INCLUDES=$(PDINC) ./headers/plugin_interface ./headers/common ./headers/server ./headers/app ./headers/lang +INCLUDES=$(PDINC) ./headers/plugin_interface ./headers/common ./headers/server ./headers/app ./headers/lang /usr/include/machine/ FLAGS=-DFLEXT_SYS=2 CFLAGS=${UFLAGS} -dynamic -O2 -Wno-unused -Wno-parentheses -Wno-switch -Wstrict-prototypes -funroll-loops -fmove-all-movables -frerun-loop-opt -fno-rtti -fno-exceptions LIBS=m gcc @@ -26,7 +26,7 @@ FRAMEWORKS=Carbon veclib # the rest can stay untouched # ---------------------------------------------- -NAME=sc4dp +NAME=sc4pd include make-files.txt diff --git a/sc4pd/source/support.cpp b/sc4pd/source/support.cpp index 8d80bbe..5211b71 100644 --- a/sc4pd/source/support.cpp +++ b/sc4pd/source/support.cpp @@ -102,7 +102,7 @@ int32 timeseed() double usec = (time-sec)*1e6; time_t tsec = sec; - suseconds_t tusec =usec; /* not exacty the way, it's calculated + useconds_t tusec =usec; /* not exacty the way, it's calculated in SuperCollider, but it's only the seed */ |