diff --git a/programs/demos/cubeline/trunk/main.cpp b/programs/demos/cubeline/trunk/main.cpp index 3013515526..697469c094 100644 --- a/programs/demos/cubeline/trunk/main.cpp +++ b/programs/demos/cubeline/trunk/main.cpp @@ -29,7 +29,7 @@ static struct { #define KEY_ESC 1 #define KEY_F 33 -static char title[50] = "Cubeline / F full screen / FPS:"; +static char *title[50] = "Cubeline / F full screen / FPS:"; static unsigned char FullScreen = 0; static unsigned char skin = 3; @@ -167,7 +167,7 @@ static void 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,title); + __menuet__define_window(win.x,win.y,win.dx,win.dy,TYPEWIN(0,0,0,1,skin,0,0,0),0,0); __menuet__window_redraw(2); // end redraw Title(); }