From d2663e952a2c3f6ac85d5173b4e39ff002248d17 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 4 Feb 2019 16:37:34 -0800 Subject: [PATCH] Changed targeting to display list of all files instead of flashing through them. --- nuke.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/nuke.c b/nuke.c index a157100..3fe9df4 100644 --- a/nuke.c +++ b/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