Change pauses

This commit is contained in:
Camden Dixie O'Brien 2024-11-04 22:30:43 +00:00
parent 048bfd2169
commit eaed12277d

4
main.c
View File

@ -42,8 +42,8 @@ typedef struct {
bool visited : 1; bool visited : 1;
} cell_t; } cell_t;
static const struct timespec gen_pause = { .tv_nsec = 5000000 }; static const struct timespec gen_pause = { .tv_nsec = 1000000 };
static const struct timespec solve_pause = { .tv_nsec = 10000000 }; static const struct timespec solve_pause = { .tv_nsec = 4000000 };
static const vec2_t steps[] = { static const vec2_t steps[] = {
[LEFT] = { .x = -2, .y = 0 }, [LEFT] = { .x = -2, .y = 0 },