Example #1
0
static void shutdownDevice() {
  closeSettingsMenu();
  scePowerRequestStandby();
}
Example #2
0
void deviceShutdown()
{
	scePowerRequestStandby();
}
Example #3
0
// 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;
}
Example #4
0
void menu_power_off(void)
{
	scePowerRequestStandby();
}