Removed unused code

This commit is contained in:
Andrew Murray 2024-10-07 19:17:59 +11:00
parent 27c1bb2654
commit 8de66597f9

View File

@ -922,10 +922,7 @@ font_render(FontObject *self, PyObject *args) {
width += ceil(stroke_width * 2 + x_start);
height += ceil(stroke_width * 2 + y_start);
image = PyObject_CallFunction(fill, "ii", width, height);
if (image == Py_None) {
PyMem_Del(glyph_info);
return Py_BuildValue("N(ii)", image, 0, 0);
} else if (image == NULL) {
if (image == NULL) {
PyMem_Del(glyph_info);
return NULL;
}