diff options
| author | realtradam <[email protected]> | 2022-01-22 06:44:00 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-01-22 06:44:00 -0500 |
| commit | 49037d3ce6a171a3b1128c2bac6edea22f80d282 (patch) | |
| tree | 8713060dae0ab2a00f60853a4ad989d07104511c /src | |
| parent | 4846d9f0121966c2dfb31dc0bf7e349ebfef3065 (diff) | |
| download | mruby-raylib-49037d3ce6a171a3b1128c2bac6edea22f80d282.tar.gz mruby-raylib-49037d3ce6a171a3b1128c2bac6edea22f80d282.zip | |
.
Diffstat (limited to 'src')
| -rw-r--r-- | src/raylib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.c b/src/raylib.c index 5322aae..7158a3e 100644 --- a/src/raylib.c +++ b/src/raylib.c @@ -295,7 +295,7 @@ mrb_draw_texture_pro(mrb_state* mrb, mrb_value self) { mrb_value dest_rect_obj; mrb_float rotation; mrb_value tint_obj; - mrb_get_args(mrb, "oooofo", &texture_obj, &pos_obj, &source_rect_obj, &dest_rect_obj, &rotation, &tint_obj); + mrb_get_args(mrb, "oooofo", &texture_obj, &source_rect_obj, &dest_rect_obj, &pos_obj, &rotation, &tint_obj); Texture *texture_data = DATA_GET_PTR(mrb, texture_obj, &Texture_type, Texture); Vector2 *pos_data = DATA_GET_PTR(mrb, pos_obj, &Vector2_type, Vector2); |
