Initial reimport of double buffering

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2009-11-14 17:00:39 +01:00
parent df48e9e18d
commit 1f56d83788
10 changed files with 318 additions and 23 deletions

View file

@ -161,7 +161,6 @@ grub_vprintf (const char *fmt, va_list args)
int ret;
ret = grub_vsprintf (0, fmt, args);
grub_refresh ();
return ret;
}
@ -818,9 +817,6 @@ grub_vsprintf (char *str, const char *fmt, va_list args)
if (str)
*str = '\0';
if (count && !str)
grub_refresh ();
return count;
}