aboutsummaryrefslogtreecommitdiff
path: root/externals
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-08-03 02:49:47 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-08-03 02:49:47 +0000
commitfbfc74f6c4d92f088856f543699983baabf167fa (patch)
tree0339457030dc022428d600bae1c340617deb97ad /externals
parent810a63a522ec5c3f05df5b2bc1cf35306bf4accb (diff)
""
svn path=/trunk/; revision=820
Diffstat (limited to 'externals')
-rw-r--r--externals/grill/xsample/source/groove.cpp4
-rw-r--r--externals/grill/xsample/source/main.cpp14
2 files changed, 9 insertions, 9 deletions
diff --git a/externals/grill/xsample/source/groove.cpp b/externals/grill/xsample/source/groove.cpp
index f70846f7..90e9c5f8 100644
--- a/externals/grill/xsample/source/groove.cpp
+++ b/externals/grill/xsample/source/groove.cpp
@@ -69,7 +69,7 @@ protected:
I xshape;
F xshparam;
F znmin,znmax;
- I xkeep;
+ BL xkeep;
S **znbuf;
S *znpos,*znmul,*znidx;
I pblksz;
@@ -161,7 +161,7 @@ V xgroove::setup(t_classid c)
xgroove::xgroove(I argc,const t_atom *argv):
loopmode(xsl_loop),curpos(0),
- _xzone(0),xzone(0),xsymm(0.5),xkeep(0),pblksz(0),
+ _xzone(0),xzone(0),xsymm(0.5),xkeep(false),pblksz(0),
xshape(0),xshparam(1),
znbuf(NULL),znmul(NULL),znidx(NULL),znpos(NULL),
bidir(1)
diff --git a/externals/grill/xsample/source/main.cpp b/externals/grill/xsample/source/main.cpp
index 5149ea05..8e6e380f 100644
--- a/externals/grill/xsample/source/main.cpp
+++ b/externals/grill/xsample/source/main.cpp
@@ -14,15 +14,15 @@ WARRANTIES, see the file, "license.txt," in this distribution.
// Initialization function for xsample library
static V xsample_main()
{
- post("-------------------------------");
- post("xsample objects, version " XSAMPLE_VERSION);
- post("");
- post(" xrecord~, xplay~, xgroove~ ");
- post(" (C)2001-2003 Thomas Grill ");
+ flext::post("-------------------------------");
+ flext::post("xsample objects, version " XSAMPLE_VERSION);
+ flext::post("");
+ flext::post(" xrecord~, xplay~, xgroove~ ");
+ flext::post(" (C)2001-2003 Thomas Grill ");
#ifdef FLEXT_DEBUG
- post(" DEBUG BUILD ");
+ flext::post(" DEBUG BUILD ");
#endif
- post("-------------------------------");
+ flext::post("-------------------------------");
// call the objects' setup routines
FLEXT_DSP_SETUP(xrecord);