Subversion Repositories Kolibri OS

Rev

Rev 9538 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9538 Rev 9597
Line 65... Line 65...
65
#define WINW 400
65
#define WINW 400
66
#define WINH 300
66
#define WINH 300
67
void draw_window()
67
void draw_window()
68
{
68
{
69
	sc.get();
69
	sc.get();
70
	DefineAndDrawWindow(screen.width-WINW/2,screen.height-WINH/2,
70
	DefineAndDrawWindow(screen.w-WINW/2,screen.h-WINH/2,
71
		WINW+9,WINH+skin_height,0x34,sc.work,"KolibriN10",0);
71
		WINW+9,WINH+skin_h,0x34,sc.work,"KolibriN10",0);
72
	DrawLogo();
72
	DrawLogo();
73
	if (install_complete) DrawInstallComplete(); else DrawIntro();
73
	if (install_complete) DrawInstallComplete(); else DrawIntro();
74
}
74
}
Line 75... Line 75...
75
 
75