Skip to content

Commit

Permalink
Fixed Typo (get_reverse_info) (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan2340 authored and CatxFish committed Nov 8, 2018
1 parent 0d9f3e7 commit d64ab6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/motion-filter/motion-filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ static void get_reverse_info(struct motion_filter_data *filter)
obs_data_t *settings = obs_source_get_settings(filter->context);
filter->motion_end = obs_data_get_bool(settings, S_MOTION_END);
var->point_x[0] = (float)obs_data_get_double(settings, S_ORG_X);
var->point_y[0] = (float)obs_data_get_double(settings, S_ORG_X);
var->point_y[0] = (float)obs_data_get_double(settings, S_ORG_Y);
var->scale_x[0] = (float)obs_data_get_double(settings, S_ORG_W);
var->scale_y[0] = (float)obs_data_get_double(settings, S_ORG_H);
obs_data_release(settings);
Expand Down

0 comments on commit d64ab6f

Please sign in to comment.