PS2 TODOs

This commit is contained in:
Francisco Javier Trujillo Mata 2018-12-31 18:48:15 +01:00
parent f7f602c1f7
commit d44ad6abd4
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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);