pre-xmas commit
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
#
|
||||
# NC-LOOPER --- another kluge from tth
|
||||
#
|
||||
|
||||
CC = gcc
|
||||
CCOPT = -Wall -g -DDEBUG_LEVEL=1
|
||||
CCOPT = -Wall -g -DDEBUG_LEVEL=0
|
||||
|
||||
ffuncs.o: ffuncs.c ffuncs.h Makefile
|
||||
$(CC) ${CCOPT} -c $<
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#include "smpllist.h"
|
||||
|
||||
/* --------------------------------------------------------------------- */
|
||||
extern int verbosity;
|
||||
extern int verbosity;
|
||||
/* --------------------------------------------------------------------- */
|
||||
void affiche_un_sample(SampleRef *sref, int options)
|
||||
{
|
||||
@@ -18,7 +18,17 @@ printf("%c %02X [%-20s] %s\n", sref->key, sref->flags, sref->text,
|
||||
sref->path);
|
||||
}
|
||||
/* --------------------------------------------------------------------- */
|
||||
void liste_des_samples(void)
|
||||
{
|
||||
int foo;
|
||||
|
||||
for (foo=0; foo<26; foo++) {
|
||||
printf("%2d %02x %-30s %s\n", foo, the_samples[foo].key,
|
||||
the_samples[foo].text,
|
||||
the_samples[foo].path);
|
||||
}
|
||||
}
|
||||
/* --------------------------------------------------------------------- */
|
||||
int decode_la_ligne(char *line, SampleRef *sref)
|
||||
{
|
||||
char *ptr, *cp;
|
||||
|
||||
Reference in New Issue
Block a user