view pads2gpcb/silkselect.c @ 105:1629fff165fb

SC75A.fp: created based on E-Sample version, with simplified silk courtyard
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 02 Oct 2019 05:12:36 +0000
parents 9d7e2937883d
children
line wrap: on
line source

#include <stdio.h>
#include <stdlib.h>

#define	MAX_LEVEL_SELECT	8

static int select_array[MAX_LEVEL_SELECT];
static int num_select;

select_drawlevel_for_silk(level)
{
	if (num_select >= MAX_LEVEL_SELECT) {
		fprintf(stderr, "Error: MAX_LEVEL_SELECT exceeded\n");
		exit(1);
	}
	select_array[num_select++] = level;
	return(0);
}

is_drawlevel_selected(level)
{
	int i;

	for (i = 0; i < num_select; i++)
		if (select_array[i] == level)
			return(1);
	return(0);
}