Fix Cairo pattern in HL target

This commit is contained in:
Joshua Granick
2018-06-19 12:50:58 -07:00
parent 5beb6460eb
commit 3eb32ab5f5

View File

@@ -1976,7 +1976,7 @@ namespace lime {
HL_PRIM void hl_lime_cairo_set_source (HL_CFFIPointer* handle, HL_CFFIPointer* pattern) {
cairo_set_source ((cairo_t*)handle->ptr, (cairo_pattern_t*)handle->ptr);
cairo_set_source ((cairo_t*)handle->ptr, (cairo_pattern_t*)pattern->ptr);
}