Solved, thanks for the tip, I added a line to make it work just how I wanted it, thanks.
<title>
<?php
if (is_single()) {
wp_title(‘ ‘);
wp_title(”, false);
echo ‘–‘;
}
bloginfo(‘name’);
if (!is_single()) {
echo ‘–‘;
bloginfo(‘description’);
}
?>
</title>