summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_vesa.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libvo/vo_vesa.c b/libvo/vo_vesa.c
index 175e2dcea8..65d326bd15 100644
--- a/libvo/vo_vesa.c
+++ b/libvo/vo_vesa.c
@@ -985,11 +985,12 @@ config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uin
else
{
clear_screen(); /* Clear screen for stupid BIOSes */
- if(verbose>1) paintBkGnd();
+ if(verbose>1)
{
int x;
x = (video_mode_info.XResolution/video_mode_info.XCharSize)/2-strlen(title)/2;
if(x < 0) x = 0;
+ paintBkGnd();
vbeWriteString(x,0,7,title);
}
}