X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=src%2Fscreen.c;h=c0aa8f4ffa753c07062b9d91e625666aa64e8b33;hb=ee82a6d611fb17b94462b7b2a87b0b5cc3ec1178;hp=1fdedc8680402e89910f88bab08f1a32e2e6185a;hpb=2eab37b96483bb928f213ae88fb91c6f22b7ff22;p=lackey diff --git a/src/screen.c b/src/screen.c index 1fdedc8..c0aa8f4 100644 --- a/src/screen.c +++ b/src/screen.c @@ -1,7 +1,25 @@ +/* + * Copyright (C) 2012 Andy Spencer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include #include "main.h" #include "screen.h" +#include "util.h" /* Types */ typedef struct { @@ -27,7 +45,7 @@ view_t views[] = { { "Help", help_init, help_draw, help_run, {KEY_F(8), '8', 'h', '?'} }, }; -int active = 3; +int active = 0; /* Local functions */ void draw_header(void)