Skip to content

Commit

Permalink
(RARCH_CONSOLE) Shorter title_buf for consoles - will fit better with…
Browse files Browse the repository at this point in the history
…in Xbox 1

screen estate dimensions
  • Loading branch information
twinaphex committed Jan 23, 2013
1 parent 8f0ef74 commit bfec641
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions retroarch.c
Original file line number Diff line number Diff line change
Expand Up @@ -2607,8 +2607,13 @@ void rarch_init_system_info(void)
if (!info->library_version)
info->library_version = "v0";

#ifdef RARCH_CONSOLE
snprintf(g_extern.title_buf, sizeof(g_extern.title_buf), "%s %s",
info->library_name, info->library_version);
#else
snprintf(g_extern.title_buf, sizeof(g_extern.title_buf), "RetroArch : %s %s",
info->library_name, info->library_version);
#endif
strlcpy(g_extern.system.valid_extensions, info->valid_extensions ? info->valid_extensions : DEFAULT_EXT,
sizeof(g_extern.system.valid_extensions));
g_extern.system.block_extract = info->block_extract;
Expand Down
2 changes: 1 addition & 1 deletion wii/pkg/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>RetroArch GX</name>
<coder>Maister, Squarepusher, ToadKing</coder>
<version>0.9.8</version>
<release_date>2012</release_date>
<release_date>2012-2013</release_date>
<short_description>Multi-system emulator</short_description>
<long_description>A port of RetroArch to the GameCube/Wii.</long_description>
<no_ios_reload/>
Expand Down

0 comments on commit bfec641

Please sign in to comment.