Chameleon

Chameleon Commit Details

Date:2011-08-14 16:23:57 (12 years 8 months ago)
Author:Azimutz
Commit:1378
Parents: 1377
Message:Forgot a comment here.
Changes:
M/trunk/i386/boot2/gui.c

File differences

trunk/i386/boot2/gui.c
857857
858858
859859
860
860
861861
862862
863
864863
865864
866865
867866
867
868868
869869
870870
......
897897
898898
899899
900
900
901901
902902
903903
904
904
905905
906906
907907
infoMenuSelection = 0;
}
if(gui.menu.draw)
if (gui.menu.draw)
drawInfoMenuItems();
//Azi: make this info more accessible.
getBoolForKey(kShowInfoKey, &shoWinfo, &bootInfo->chameleonConfig);
if (shoWinfo && showBootBanner) // no boot banner, no showinfo.
{
// keep formatted with spaces instead of tabs
gui.debug.cursor = pos( 10, 100);
dprintf( &gui.screen, "label: %s\n", param->label );
dprintf( &gui.screen, "biosdev: 0x%x\n", param->biosdev );
}
// draw prev indicator
if(start)
if (start)
blend( images[iDeviceScrollPrev].image, gui.devicelist.pixmap, centeredAt( images[iDeviceScrollPrev].image, p_prev ) );
// draw next indicator
if( end < gDeviceCount - 1 )
if ( end < gDeviceCount - 1 )
blend( images[iDeviceScrollNext].image, gui.devicelist.pixmap, centeredAt( images[iDeviceScrollNext].image, p_next ) );
gui.redraw = true;

Archive Download the corresponding diff file

Revision: 1378