From e829fd8df99342ce4f654e0e7e93244f0e147593 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 9 Jan 2013 08:25:38 +0100 Subject: [PATCH] frontend_console.c - get rid of weird commas --- frontend/frontend_console.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/frontend_console.c b/frontend/frontend_console.c index 8216c8c665..f5f920d844 100644 --- a/frontend/frontend_console.c +++ b/frontend/frontend_console.c @@ -273,9 +273,9 @@ begin_loop: args.verbose = g_extern.verbose; args.config_path = g_extern.config_path; - args.sram_path = g_extern.console.main_wrap.state.default_sram_dir.enable ? g_extern.console.main_wrap.paths.default_sram_dir : NULL, - args.state_path = g_extern.console.main_wrap.state.default_savestate_dir.enable ? g_extern.console.main_wrap.paths.default_savestate_dir : NULL, - args.rom_path = g_extern.fullpath; + args.sram_path = g_extern.console.main_wrap.state.default_sram_dir.enable ? g_extern.console.main_wrap.paths.default_sram_dir : NULL; + args.state_path = g_extern.console.main_wrap.state.default_savestate_dir.enable ? g_extern.console.main_wrap.paths.default_savestate_dir : NULL; + args.rom_path = g_extern.fullpath; args.libretro_path = g_settings.libretro; int init_ret = rarch_main_init_wrap(&args);