git-svn-id: svn://kolibrios.org@7954 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2020-05-19 20:35:55 +00:00
parent 26f247ef3e
commit cc8ba8e9ab
1 changed files with 2 additions and 9 deletions

View File

@ -29,8 +29,6 @@ static struct {
#define KEY_ESC 1
#define KEY_F 33
static char *title[50] = "Cubeline / F full screen / FPS:";
static unsigned char FullScreen = 0;
static unsigned char skin = 3;
@ -159,17 +157,12 @@ static void disabletgl()
delete pri;
}
static void Title()
{
SysCall(71,1,title);
}
static void draw_window(void)
{
__menuet__window_redraw(1); // start redraw
__menuet__define_window(win.x,win.y,win.dx,win.dy,TYPEWIN(0,0,0,1,skin,0,0,0),0,0);
__menuet__define_window(win.x,win.y,win.dx,win.dy,TYPEWIN(0,0,0,1,skin,0,0,0),0,
"Cubeline / F full screen / FPS:");
__menuet__window_redraw(2); // end redraw
Title();
}
int main(void)