Beispiel #1
0
static void shutdownDevice() {
  closeSettingsMenu();
  scePowerRequestStandby();
}
Beispiel #2
0
void deviceShutdown()
{
	scePowerRequestStandby();
}
// Shutdown and Standby Functions
static int lua_shutdown(lua_State *L)
{
    if (lua_gettop(L) != 0) return luaL_error(L, "no arguments expected.");
    scePowerRequestStandby();
    return 0;
}
Beispiel #4
0
void menu_power_off(void)
{
	scePowerRequestStandby();
}