diff options
Diffstat (limited to 'src/hungrycat-node.c')
-rw-r--r-- | src/hungrycat-node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hungrycat-node.c b/src/hungrycat-node.c index da78ed9..b880eda 100644 --- a/src/hungrycat-node.c +++ b/src/hungrycat-node.c @@ -21,7 +21,7 @@ #include "tex-node.h" -stage_t * hungrycat_node_new(stage_conf_t *conf, m4f_t *model_x) +stage_t * hungrycat_node_new(stage_conf_t *conf, m4f_t *projection_x, m4f_t *model_x) { - return tex_node_new_mem(conf, gfx_hungrycat.width, gfx_hungrycat.height, gfx_hungrycat.pixel_data, model_x); + return tex_node_new_mem(conf, gfx_hungrycat.width, gfx_hungrycat.height, gfx_hungrycat.pixel_data, projection_x, model_x); } |