remove dbg message

This commit is contained in:
stefan schippers 2024-12-20 01:19:02 +01:00
parent d03f3b52e1
commit d9d75de337
1 changed files with 0 additions and 2 deletions

View File

@ -1557,8 +1557,6 @@ int raw_get_pos(const char *node, double value, int dset, int from_start, int to
double vstart = get_raw_value(dset, idx, start);
double vend = get_raw_value(dset, idx, end);
int sign = (vend > vstart) ? 1 : -1;
dbg(0, "%d %d\n", start, end);
if(start >= end) start = end;
if( sign * value >= sign * vstart && sign * value <= sign * vend) {
while(1) {