(360) Quit button returns to dash

This commit is contained in:
TwinAphex51224 2012-01-24 00:32:44 +01:00
parent 2797ec3a79
commit a9ffab7854

View File

@ -58,6 +58,12 @@ HRESULT CMyMainScene::OnNotifyPress( HXUIOBJ hObjPressed, BOOL& bHandled )
mode_switch = MODE_EMULATION;
init_ssnes = 1;
}
else if ( hObjPressed == m_quit )
{
menu_is_running = false;
mode_switch = MODE_EXIT;
init_ssnes = 0;
}
bHandled = TRUE;
return S_OK;