From ea4fac679fd65a66e05095c0e656e0c73abf093b Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Mon, 11 Feb 2013 00:24:51 +0100 Subject: [PATCH] Allow user to read the result of wget. Several retro targets clear the screen after program termination so allow user to read the result. --- examples/wget/wget.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/wget/wget.c b/examples/wget/wget.c index 00bc6439b..5cac9b885 100644 --- a/examples/wget/wget.c +++ b/examples/wget/wget.c @@ -142,6 +142,8 @@ app_quit(void) if(file != -1) { cfs_close(file); } + puts("Press any key to continue..."); + getchar(); process_exit(&wget_process); LOADER_UNLOAD(); }