diff --git a/menu/menu_driver.c b/menu/menu_driver.c index 4750fe1ec2..42c9c096c0 100644 --- a/menu/menu_driver.c +++ b/menu/menu_driver.c @@ -1743,9 +1743,10 @@ static bool menu_init(menu_handle_t *menu_data) configuration_set_bool(settings, settings->bools.menu_show_start_screen, false); - +#if !defined(PS2) // TODO: PS2 IMPROVEMENT if (settings->bools.config_save_on_exit) command_event(CMD_EVENT_MENU_SAVE_CURRENT_CONFIG, NULL); +#endif } if ( settings->bools.bundle_assets_extract_enable diff --git a/verbosity.c b/verbosity.c index 7a9cfccbd5..2d686c1ca3 100644 --- a/verbosity.c +++ b/verbosity.c @@ -127,7 +127,7 @@ void retro_main_log_file_init(const char *path) log_file_fp = (FILE*)fopen_utf8(path, "wb"); log_file_initialized = true; -#if !defined(PS2) +#if !defined(PS2) // TODO: PS2 IMPROVEMENT /* TODO: this is only useful for a few platforms, find which and add ifdef */ log_file_buf = calloc(1, 0x4000); setvbuf(log_file_fp, (char*)log_file_buf, _IOFBF, 0x4000);