mirror of
https://github.com/libretro/RetroArch
synced 2025-04-16 08:43:10 +00:00
(360) Fixup
This commit is contained in:
parent
7fa59c7f6a
commit
61d88fe42d
@ -292,7 +292,7 @@ HRESULT CRetroArchMain::OnInit(XUIMessageInit * pInitData, BOOL& bHandled)
|
|||||||
GetChildById(L"XuiBtnQuit", &m_quit);
|
GetChildById(L"XuiBtnQuit", &m_quit);
|
||||||
GetChildById(L"XuiTxtTitle", &m_title);
|
GetChildById(L"XuiTxtTitle", &m_title);
|
||||||
GetChildById(L"XuiTxtCoreText", &m_core);
|
GetChildById(L"XuiTxtCoreText", &m_core);
|
||||||
GetChildById(L"XuiBtnLibsnesCore", &m_change_libsnes_core);
|
GetChildById(L"XuiBtnLibsnesCore", &m_change_libretro_core);
|
||||||
|
|
||||||
char core_text[256];
|
char core_text[256];
|
||||||
sprintf(core_text, "%s (v%s)", id, info.library_version);
|
sprintf(core_text, "%s (v%s)", id, info.library_version);
|
||||||
@ -457,9 +457,9 @@ HRESULT CRetroArchMain::OnNotifyPress( HXUIOBJ hObjPressed, int & bHandled )
|
|||||||
|
|
||||||
NavigateForward(app.hQuickMenu);
|
NavigateForward(app.hQuickMenu);
|
||||||
}
|
}
|
||||||
else if ( hObjPressed == m_change_libsnes_core )
|
else if ( hObjPressed == m_change_libretro_core )
|
||||||
{
|
{
|
||||||
hr = XuiSceneCreate(hdmenus_allowed ? L"file://game:/media/hd/" : L"file://game:/media/sd/", L"rarch_libsnescore_browser.xur", NULL, &app.hCoreBrowser);
|
hr = XuiSceneCreate(hdmenus_allowed ? L"file://game:/media/hd/" : L"file://game:/media/sd/", L"rarch_libretrocore_browser.xur", NULL, &app.hCoreBrowser);
|
||||||
|
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
{
|
{
|
||||||
|
@ -49,7 +49,7 @@ protected:
|
|||||||
CXuiControl m_quick_menu;
|
CXuiControl m_quick_menu;
|
||||||
CXuiControl m_controls;
|
CXuiControl m_controls;
|
||||||
CXuiControl m_settings;
|
CXuiControl m_settings;
|
||||||
CXuiControl m_change_libsnes_core;
|
CXuiControl m_change_libretro_core;
|
||||||
CXuiControl m_quit;
|
CXuiControl m_quit;
|
||||||
CXuiTextElement m_title;
|
CXuiTextElement m_title;
|
||||||
CXuiTextElement m_core;
|
CXuiTextElement m_core;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user