hmm, I guess I forgot to add the theme setting in but all you have to do is overwrite this file:
images/vertex_image/banner_logo.png
You could also add this little snippet to your index.template.php to get the setting to work.
Replace:
<img src="', $settings['images_url'] ,'/vertex_image/banner_logo.png" alt="" />
With:
', empty($context['header_logo_url_html_safe']) ? '<img src="'. $settings['images_url'] .'/vertex_image/banner_logo.png" alt="' . $context['forum_name'] . '" />' : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />' ,'