Cleaning error management

This commit is contained in:
Anonymus Raccoon
2020-05-01 20:51:16 +02:00
parent 7577a73428
commit 956ff64646
+1 -2
View File
@@ -46,6 +46,5 @@ gc_scene *scene_parse_xml(gc_scene *scene, gc_engine *engine, const char *xml)
gc_scene *scene_create(gc_engine *engine, const char *xml)
{
gc_scene *scene = scene_new(engine);
scene_parse_xml(scene, engine, xml);
return (scene);
return (scene_parse_xml(scene, engine, xml));
}