From 1dc77507a81eed84493baf60090b08522a1256e3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 19 Oct 2021 22:23:07 +0200 Subject: [PATCH] Fix command stdin - courtesy of Cthulhu --- input/input_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/input_driver.c b/input/input_driver.c index f0fbb71aad..38ece125fc 100644 --- a/input/input_driver.c +++ b/input/input_driver.c @@ -3088,7 +3088,7 @@ void input_driver_init_command( else { input_st->command[0] = command_stdin_new(); - if (!input_st->command[1]) + if (!input_st->command[0]) RARCH_ERR("Failed to initialize the stdin command interface.\n"); } }