(360) Name change

This commit is contained in:
TwinAphex51224 2012-04-21 02:55:55 +02:00
parent da4f176053
commit 8da73e0434
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@
<Width>247.200012</Width>
<Height>40.000000</Height>
<Position>43.581604,21.159988,0.000000</Position>
<Text>SSNES 360</Text>
<Text>RetroArch 360</Text>
<TextColor>0xff0f0f0f</TextColor>
<DropShadowColor>0x800f0f0f</DropShadowColor>
<Font>Arial Unicode MS</Font>

View File

@ -29,7 +29,7 @@
<Width>247.200012</Width>
<Height>40.000000</Height>
<Position>43.581604,21.159988,0.000000</Position>
<Text>SSNES 360</Text>
<Text>RetroArch 360</Text>
<TextColor>0xff0f0f0f</TextColor>
<DropShadowColor>0x800f0f0f</DropShadowColor>
<Font>Arial Unicode MS</Font>

View File

@ -297,7 +297,7 @@ HRESULT CSSNESMain::OnInit(XUIMessageInit * pInitData, BOOL& bHandled)
char core_text[256];
sprintf(core_text, "%s (v%s)", id, info.library_version);
char package_version[32];
sprintf(package_version, "SSNES %s", PACKAGE_VERSION);
sprintf(package_version, "RetroArch %s", PACKAGE_VERSION);
unsigned long dwNum = MultiByteToWideChar(CP_ACP, 0, core_text, -1, NULL, 0);
unsigned long dwNum_package = MultiByteToWideChar(CP_ACP, 0, package_version, -1, NULL, 0);
wchar_t * core_text_utf = new wchar_t[dwNum];