Skip to content

Commit

Permalink
Add some silly extra stuff to the tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
klange committed Jul 12, 2015
1 parent e82d2db commit d968d27
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion userspace/gui/demo/live-wizard.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,23 @@ static void redraw(void) {
case 1:
draw_logo();
draw_centered_label(100+70,12,"If you wish to exit the tutorial at any time, you can");
draw_centered_label(100+88,12,"click the × in the upper right corner of this window.");
draw_centered_label(100+84,12,"click the × in the upper right corner of this window.");
draw_next_button(0);
break;
case 2:
draw_logo();
draw_centered_label(100+70, 12,"As a reminder, とあるOS is a hobby project with few developers.");
draw_centered_label(100+84, 12,"As such, do not expect things to work perfectly, or in some cases,");
draw_centered_label(100+98, 12,"at all, as the kernel and drivers are very much \"work-in-progress\".");
draw_next_button(0);
break;
case 3:
draw_logo();
draw_centered_label(100+70, 12,"This tutorial itself is still a work-in-progress,");
draw_centered_label(100+84, 12,"so there's nothing else to see.");
draw_next_button(0);
break;
case 4:
draw_logo();
draw_centered_label(100+70,12,"Congratulations!");
draw_centered_label(100+88,12,"You've finished the tutorial!");
Expand Down

0 comments on commit d968d27

Please sign in to comment.