From 5045a0faffe968cd54e5c7913d06ea9b09b0513e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 28 Jun 2016 04:23:57 +0200 Subject: [PATCH] Add optional logging --- retroarch.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/retroarch.c b/retroarch.c index eb47f70716..4c6a6615a1 100644 --- a/retroarch.c +++ b/retroarch.c @@ -741,6 +741,10 @@ static void retroarch_parse_input(int argc, char *argv[]) int port; int c = getopt_long(argc, argv, optstring, opts, NULL); +#if 0 + RARCH_LOG("c is: %c, optarg is: [%s]\n", c, string_is_empty(optarg) ? "" : optarg); +#endif + if (c == -1) break;