tower: Fix erroneous return value

The function's return value is void, not gboolean.
This commit is contained in:
Florian Müllner 2013-08-21 22:05:49 +02:00 committed by Jasper St. Pierre
parent d0b870d3a9
commit 7ac66faa72

View File

@ -400,7 +400,7 @@ texture_tower_revalidate_fbo (MetaTextureTower *tower,
if (!cogl_framebuffer_allocate (fb, &catch_error))
{
cogl_error_free (catch_error);
return FALSE;
return;
}
cogl_framebuffer_orthographic (fb, 0, 0, dest_texture_width, dest_texture_height, -1., 1.);