diff options
| author | realtradam <[email protected]> | 2022-02-09 09:54:43 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-02-09 09:54:43 -0500 |
| commit | 96580c44bff6b466188b0e71d974829228e2fa88 (patch) | |
| tree | debd5839be1919439b3097a0a2d446355b206d81 /src/textures.c | |
| parent | aaed2a48f4565862aed1694e68105f1a06ebd3c8 (diff) | |
| download | mruby-raylib-96580c44bff6b466188b0e71d974829228e2fa88.tar.gz mruby-raylib-96580c44bff6b466188b0e71d974829228e2fa88.zip | |
started work on text drawing methods
Diffstat (limited to 'src/textures.c')
| -rw-r--r-- | src/textures.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c index 4126c21..3a0b4bc 100644 --- a/src/textures.c +++ b/src/textures.c @@ -152,7 +152,7 @@ mrb_Texture_draw_texture(mrb_state* mrb, mrb_value self) { UNWRAPSTRUCT(Texture, Texture_type, self, texture_data); //mrb_value tint_obj = mrb_funcall(mrb, mrb_obj_value(color), "white", 0); //Texture2D texture, Rectangle source, Rectangle dest, Vector2 origin, float rotation, Color tint - uint32_t kw_num = 7; + uint32_t kw_num = 5; const mrb_sym kw_names[] = { mrb_intern_lit(mrb, "source"), mrb_intern_lit(mrb, "dest"), |
