Fix object paths of graphs

This commit is contained in:
Nedko Arnaudov 2009-09-20 17:30:48 +03:00
parent 303c07d6e6
commit df6e35ccdf
1 changed files with 2 additions and 2 deletions

View File

@ -378,13 +378,13 @@ bool studio_init(void)
//studio_clear();
if (!ladish_graph_create(&g_studio.jack_graph, STUDIO_OBJECT_PATH))
if (!ladish_graph_create(&g_studio.jack_graph, NULL))
{
lash_error("ladish_graph_create() failed to create jack graph object.");
goto free_studios_dir;
}
if (!ladish_graph_create(&g_studio.studio_graph, NULL))
if (!ladish_graph_create(&g_studio.studio_graph, STUDIO_OBJECT_PATH))
{
lash_error("ladish_graph_create() failed to create studio graph object.");
goto jack_graph_destroy;