Change C++ comments to c

This commit is contained in:
twinaphex 2018-12-31 21:08:25 +01:00
parent 8ca9797a16
commit bb5cd1dfeb
2 changed files with 2 additions and 2 deletions

View File

@ -1743,7 +1743,7 @@ 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 !defined(PS2) /* TODO: PS2 IMPROVEMENT */
if (settings->bools.config_save_on_exit)
command_event(CMD_EVENT_MENU_SAVE_CURRENT_CONFIG, NULL);
#endif

View File

@ -123,7 +123,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) // TODO: PS2 IMPROVEMENT
#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);