Skip to content

Commit

Permalink
change to display name only, looks like the core picker, needs to be …
Browse files Browse the repository at this point in the history
…ordered by name though
  • Loading branch information
andres-asm committed Jul 12, 2015
1 parent b7e2755 commit 0708e58
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions core_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,10 +404,7 @@ bool core_info_get_display_name(const char *path, char *s, size_t len)
if (!conf)
goto error;

if(display_name)
snprintf(s, len,"%s (%s)",core_name, display_name);
else
snprintf(s, len,"%s",core_name);
snprintf(s, len,"%s",display_name);

free(core_name);

Expand Down

0 comments on commit 0708e58

Please sign in to comment.