From 680179d22dee90938666b9e5b2033bcb6c48c7d2 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Fri, 10 Jul 2015 01:03:30 -0400 Subject: Initial implementation of low level IL --- functiongraph.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'functiongraph.cpp') diff --git a/functiongraph.cpp b/functiongraph.cpp index d6f9a85a..1ebd149f 100644 --- a/functiongraph.cpp +++ b/functiongraph.cpp @@ -62,9 +62,9 @@ void FunctionGraph::SetMaximumSymbolWidth(size_t width) } -void FunctionGraph::StartLayout() +void FunctionGraph::StartLayout(BNFunctionGraphType type) { - BNStartFunctionGraphLayout(m_graph); + BNStartFunctionGraphLayout(m_graph, type); } -- cgit v1.3.1