Changed targeting to display list of all files instead of flashing
through them.
This commit is contained in:
parent
8f5b827727
commit
d2663e952a
10
nuke.c
10
nuke.c
@ -254,10 +254,14 @@ int main(int argc, char *argv[])
|
||||
mvaddch(targetr-1,targetc+1,'/');
|
||||
attroff(COLOR_PAIR(RED));
|
||||
attron(COLOR_PAIR(BLACK_ON_RED));
|
||||
mvprintw(targetr-2,targetc+2,"%s", argc > 1 ? argv[f+1] : "testing grounds");
|
||||
if (argc <= 1) {
|
||||
mvprintw(targetr-2,targetc+2,"%s", "testing grounds");
|
||||
} else {
|
||||
for (int t=0; t < argc-1; t++) {
|
||||
mvprintw(targetr-2-t,targetc+2,"%s", argv[argc-t-1]);
|
||||
}
|
||||
}
|
||||
attroff(COLOR_PAIR(BLACK_ON_RED));
|
||||
if (argc > 2)
|
||||
f = (f + 1) % (argc - 1);
|
||||
}
|
||||
|
||||
// Draw nuke
|
||||
|
Loading…
Reference in New Issue
Block a user