From 82b9e0b1a8f5d993ca7cd26961696760b4bc57f5 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Mon, 11 Mar 2019 01:45:44 +0100 Subject: [PATCH] fix misplaced comment --- resynth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resynth.c b/resynth.c index fcefcd3..19dfdef 100644 --- a/resynth.c +++ b/resynth.c @@ -270,7 +270,6 @@ INLINE void try_point(Resynth_state *s, const Coord point) { } INLINE void resynth__init(Resynth_state *s, Parameters parameters) { - // "resynthesize" an output image from a given input image. sb_freeset(s->data_points); sb_freeset(s->corpus_points); sb_freeset(s->sorted_offsets); @@ -356,6 +355,7 @@ INLINE void resynth__init(Resynth_state *s, Parameters parameters) { } static void resynth(Resynth_state *s, Parameters parameters) { + // "resynthesize" an output image from a given input image. resynth__init(s, parameters); for (int i = sb_count(s->data_points) - 1; i >= 0; i--) {