summaryrefslogtreecommitdiffstats
path: root/Smoke/glyphs.c
diff options
context:
space:
mode:
Diffstat (limited to 'Smoke/glyphs.c')
-rw-r--r--Smoke/glyphs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Smoke/glyphs.c b/Smoke/glyphs.c
index c854e20..c93f9fa 100644
--- a/Smoke/glyphs.c
+++ b/Smoke/glyphs.c
@@ -22,7 +22,7 @@ static int glyphs_dataset_direction = DATASET_RHO;
static float glyphs_alpha = 1.0f;
static fftw_real *glyphs_frame_color;
-struct fftw_real_xy_p glyphs_frame_direction;
+struct fftw_real_xy glyphs_frame_direction;
void glyphs_set_render(int render_glyphs)
@@ -119,12 +119,12 @@ fftw_real *glyphs_get_frame_color(void)
return glyphs_frame_color;
}
-void glyphs_set_frames_direction(struct fftw_real_xy_p frame)
+void glyphs_set_frames_direction(struct fftw_real_xy frame)
{
glyphs_frame_direction = frame;
}
-struct fftw_real_xy_p glyphs_get_frames_direction(void)
+struct fftw_real_xy glyphs_get_frames_direction(void)
{
return glyphs_frame_direction;
}