Index: trunk/i386/boot2/graphics.c =================================================================== --- trunk/i386/boot2/graphics.c (revision 308) +++ trunk/i386/boot2/graphics.c (revision 309) @@ -36,8 +36,6 @@ * for spinning disk */ static int currentIndicator = 0; -static int oldScreenWidth = 0; -static int oldScreenHeight = 0; int previewTotalSectors = 0; int previewLoadedSectors = 0; @@ -1129,10 +1127,7 @@ params[1] = 25; } - if (params[0] != oldScreenWidth && params[1] != oldScreenHeight) - { - setVESATextMode( params[0], params[1], 4 ); - } + setVESATextMode( params[0], params[1], 4 ); bootArgs->Video.v_display = VGA_TEXT_MODE; }