@qldbowler
If you are still needing to display hidden pages in your sitemap you can simply change line 47 of /modules/sitemap/view.php:
Current code:
$private_where_sql = "visibility = 'public'";
Replace with code:
$private_where_sql = "(visibility = 'public' OR visibility = 'hidden')";
Of course, the page will either need to be a child of a visible parent or a child of the root.