Browse Source

* Oops

tags/v0.99.beta17
Pascal Terjan pterjan 15 years ago
parent
commit
5a4d1c2b9b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ruby/caca-canvas.c

+ 1
- 1
ruby/caca-canvas.c View File

@@ -642,7 +642,7 @@ static VALUE export_area_to_memory(VALUE self, VALUE x, VALUE y, VALUE w, VALUE
size_t bytes;
void *result;
VALUE ret;
result = caca_export_canvas_to_memory (_SELF, NUM2INT(x), NUM2INT(y), NUM2INT(w), NUM2INT(h), StringValuePtr(format), &bytes);
result = caca_export_area_to_memory (_SELF, NUM2INT(x), NUM2INT(y), NUM2INT(w), NUM2INT(h), StringValuePtr(format), &bytes);
ret = rb_str_new(result, bytes);
free(result);
return ret;


Loading…
Cancel
Save