Display both standard posts in a specific category along with a custom post type in a single loop?

$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;

query_posts( array(
        'post_type' => array(
                    'post',
                    'features',

                ),
'category_name' => 'Featured',
                'paged' => $paged )

            );

// have some posts?
if (have_posts()) :
    while (have_posts()) : the_post();

        // the loop

    endwhile;
endif;
?>