Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3c2fc13b authored by hhakim's avatar hhakim
Browse files

Fix TransformHelperGen::get_fact_type which was buggy in case of transpose Faust.

parent 2baef604
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@ namespace Faust
template<typename FPP, FDevice DEV>
MatType TransformHelperGen<FPP,DEV>::get_fact_type(const faust_unsigned_int id) const
{
return this->transform->get_fact(id, false)->getType();
return this->transform->get_fact(this->is_transposed?size()-id-1:id, false)->getType();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment